File tree 8 files changed +9
-9
lines changed
main/src/kotlinx/benchmark/gradle
8 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Use plugin in `build.gradle`:
34
34
35
35
``` groovy
36
36
plugins {
37
- id 'org.jetbrains.kotlinx.benchmark' version '0.3.0 '
37
+ id 'org.jetbrains.kotlinx.benchmark' version '0.3.1 '
38
38
}
39
39
```
40
40
@@ -87,7 +87,7 @@ kotlin {
87
87
sourceSets {
88
88
commonMain {
89
89
dependencies {
90
- implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.3.0 ")
90
+ implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.3.1 ")
91
91
}
92
92
}
93
93
}
Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
dependencies {
3
- classpath " org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.3.0 "
3
+ classpath " org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.3.1 "
4
4
}
5
5
}
6
6
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
8
8
java
9
9
kotlin(" jvm" )
10
10
kotlin(" plugin.allopen" ) version " 1.4.0"
11
- id(" org.jetbrains.kotlinx.benchmark" ) version " 0.3.0 "
11
+ id(" org.jetbrains.kotlinx.benchmark" ) version " 0.3.1 "
12
12
}
13
13
14
14
sourceSets.all {
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id ' org.jetbrains.kotlin.multiplatform'
3
3
id ' org.jetbrains.kotlin.plugin.allopen' version " 1.4.0"
4
- id ' org.jetbrains.kotlinx.benchmark' version " 0.3.0 "
4
+ id ' org.jetbrains.kotlinx.benchmark' version " 0.3.1 "
5
5
}
6
6
7
7
// how to apply plugin to a specific source set?
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ plugins {
2
2
id ' java'
3
3
id ' org.jetbrains.kotlin.jvm'
4
4
id ' org.jetbrains.kotlin.plugin.allopen' version " 1.4.0"
5
- id ' org.jetbrains.kotlinx.benchmark' version ' 0.3.0 '
5
+ id ' org.jetbrains.kotlinx.benchmark' version ' 0.3.1 '
6
6
}
7
7
8
8
Original file line number Diff line number Diff line change 1
1
# Set up your maven coordinates here, artifactId is defined per project.
2
2
group = org.jetbrains.kotlinx
3
- version = 0.3.0
3
+ version = 0.3.1
4
4
5
5
kotlin.code.style =official
6
6
kotlin_version =1.4.30
Original file line number Diff line number Diff line change 1
1
kotlin.code.style =official
2
2
3
3
# Set up your maven coordinates here, artifactId is defined per project.
4
- version = 0.3.0
4
+ version = 0.3.1
5
5
group = org.jetbrains.kotlinx
6
6
7
7
kotlin_version =1.4.30
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import org.jetbrains.kotlin.gradle.plugin.*
8
8
class BenchmarksPlugin : Plugin <Project > {
9
9
companion object {
10
10
const val PLUGIN_ID = " org.jetbrains.kotlinx.benchmark"
11
- const val PLUGIN_VERSION = " 0.3.0 "
11
+ const val PLUGIN_VERSION = " 0.3.1 "
12
12
13
13
const val BENCHMARKS_TASK_GROUP = " benchmark"
14
14
const val BENCHMARK_EXTENSION_NAME = " benchmark"
You can’t perform that action at this time.
0 commit comments