Skip to content

Commit 25f88e8

Browse files
Abduqodiri Qurbonzodaqurbonzoda
authored andcommitted
Upgrade Kotlin version to 1.8.21
1 parent d7b83a1 commit 25f88e8

File tree

3 files changed

+5
-17
lines changed

3 files changed

+5
-17
lines changed

benchmarks/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ kotlin {
2424
}
2525
}
2626

27-
js {
27+
js(IR) {
2828
nodejs {
2929

3030
}
@@ -38,7 +38,7 @@ kotlin {
3838
sourceSets {
3939
commonMain {
4040
dependencies {
41-
api("org.jetbrains.kotlin:kotlin-stdlib-common")
41+
api("org.jetbrains.kotlin:kotlin-stdlib")
4242
api("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.1")
4343
api(project(":kotlinx-collections-immutable"))
4444
}

build.gradle.kts

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.kotlin:kotlin-gradle-plugin:1.6.0")
3+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21")
44
}
55
}
66

core/build.gradle.kts

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -73,40 +73,28 @@ kotlin {
7373
sourceSets {
7474
commonMain {
7575
dependencies {
76-
api("org.jetbrains.kotlin:kotlin-stdlib-common")
76+
api("org.jetbrains.kotlin:kotlin-stdlib")
7777
}
7878
}
7979

8080
commonTest {
8181
dependencies {
82-
api("org.jetbrains.kotlin:kotlin-test-common")
83-
api("org.jetbrains.kotlin:kotlin-test-annotations-common")
82+
api("org.jetbrains.kotlin:kotlin-test")
8483
}
8584
}
8685

8786
val jvmMain by getting {
88-
dependencies {
89-
api("org.jetbrains.kotlin:kotlin-stdlib")
90-
91-
}
9287
}
9388
val jvmTest by getting {
9489
dependencies {
95-
api("org.jetbrains.kotlin:kotlin-test-junit")
9690
implementation("com.google.guava:guava-testlib:18.0")
9791
}
9892
}
9993

10094
val jsMain by getting {
101-
dependencies {
102-
api("org.jetbrains.kotlin:kotlin-stdlib-js")
103-
}
10495
}
10596

10697
val jsTest by getting {
107-
dependencies {
108-
api("org.jetbrains.kotlin:kotlin-test-js")
109-
}
11098
}
11199

112100
val nativeMain by getting {

0 commit comments

Comments
 (0)