Skip to content

Commit 098822a

Browse files
committed
Migrate to kotlinx.benchmark, step 2
1 parent 1f8fbb7 commit 098822a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+74
-74
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
plugins {
22
id 'java'
3-
id 'kotlinx.benchmark' version '0.1.7'
3+
id 'kotlinx.benchmark' version '0.2.0'
44
}
55

66
dependencies {

examples/kotlin-kts/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
java
99
kotlin("jvm")
1010
kotlin("plugin.allopen") version "1.3.30"
11-
id("kotlinx.benchmark") version "0.1.7"
11+
id("kotlinx.benchmark") version "0.2.0"
1212
}
1313

1414
sourceSets.all {

examples/kotlin-multiplatform/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
plugins {
88
id 'org.jetbrains.kotlin.multiplatform'
99
id 'org.jetbrains.kotlin.plugin.allopen' version "1.3.30"
10-
id 'kotlinx.benchmark' version "0.1.7"
10+
id 'kotlinx.benchmark' version "0.2.0"
1111
id 'kotlinx.team.node'
1212
}
1313

examples/kotlin-multiplatform/src/commonMain/kotlin/CommonBenchmark.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package test
22

3-
import org.jetbrains.gradle.benchmarks.*
3+
import kotlinx.benchmark.*
44
import kotlin.math.*
55

66
@State(Scope.Benchmark)

examples/kotlin-multiplatform/src/commonMain/kotlin/InheritedBenchmark.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package test
22

3-
import org.jetbrains.gradle.benchmarks.*
3+
import kotlinx.benchmark.*
44
import kotlin.math.*
55

66
@State(Scope.Benchmark)

examples/kotlin-multiplatform/src/commonMain/kotlin/ParamBenchmark.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package test
22

3-
import org.jetbrains.gradle.benchmarks.*
3+
import kotlinx.benchmark.*
44
import kotlin.math.*
55

66
@State(Scope.Benchmark)

examples/kotlin-multiplatform/src/jsMain/kotlin/JsAsyncBenchmarks.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package test
22

3-
import org.jetbrains.gradle.benchmarks.*
3+
import kotlinx.benchmark.*
44
import kotlin.js.*
55

66
@State(Scope.Benchmark)

examples/kotlin-multiplatform/src/jsMain/kotlin/JsTestBenchmark.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package test
22

3-
import org.jetbrains.gradle.benchmarks.*
3+
import kotlinx.benchmark.*
44
import kotlin.math.*
55

66
@State(Scope.Benchmark)

examples/kotlin-multiplatform/src/nativeMain/kotlin/NativeTestBenchmark.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package test
22

3-
import org.jetbrains.gradle.benchmarks.*
3+
import kotlinx.benchmark.*
44
import kotlin.math.*
55

66
@State(Scope.Benchmark)

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.3.30"
5-
id 'kotlinx.benchmark' version '0.1.7'
5+
id 'kotlinx.benchmark' version '0.2.0'
66
}
77

88
apply from: rootProject.file('gradle/shared.gradle')

0 commit comments

Comments
 (0)