Skip to content

Commit e00e1f9

Browse files
Abduqodiri Qurbonzodaqurbonzoda
authored andcommitted
Do not specify plugin version as it is an included build
Those dependencies are substituted by Gradle when the plugin `id` or `group:name` is specified correctly.
1 parent 211c310 commit e00e1f9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
dependencies {
3-
classpath "org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.5.0-SNAPSHOT"
3+
classpath "org.jetbrains.kotlinx:kotlinx-benchmark-plugin"
44
}
55
}
66

examples/kotlin-kts/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
java
1010
kotlin("jvm")
1111
kotlin("plugin.allopen") version "1.8.21"
12-
id("org.jetbrains.kotlinx.benchmark") version "0.5.0-SNAPSHOT"
12+
id("org.jetbrains.kotlinx.benchmark")
1313
}
1414

1515
sourceSets.all {

examples/kotlin-multiplatform/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import kotlinx.benchmark.gradle.JsBenchmarksExecutor
55
plugins {
66
id 'org.jetbrains.kotlin.multiplatform'
77
id 'org.jetbrains.kotlin.plugin.allopen' version "1.8.21"
8-
id 'org.jetbrains.kotlinx.benchmark' version "0.5.0-SNAPSHOT"
8+
id 'org.jetbrains.kotlinx.benchmark'
99
}
1010

1111
// how to apply plugin to a specific source set?

examples/kotlin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java'
33
id 'org.jetbrains.kotlin.jvm'
44
id 'org.jetbrains.kotlin.plugin.allopen' version "1.8.21"
5-
id 'org.jetbrains.kotlinx.benchmark' version '0.5.0-SNAPSHOT'
5+
id 'org.jetbrains.kotlinx.benchmark'
66
}
77

88

0 commit comments

Comments
 (0)