Skip to content

Commit 992d189

Browse files
Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v2.1.20 (#1605)
* Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v2.1.20 * Use new JVM binaries DSL * Update Burst --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jake Wharton <[email protected]>
1 parent 4c67514 commit 992d189

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

gradle/libs.versions.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
jmh = "1.37"
3-
kotlin = "2.1.10"
3+
kotlin = "2.1.20"
44
ktlint = "0.48.2"
55

66
[libraries]
@@ -10,7 +10,7 @@ androidx-test-ext-junit = { module = "androidx.test.ext:junit", version = "1.2.1
1010
androidx-test-runner = { module = "androidx.test:runner", version = "1.5.2" }
1111
binaryCompatibilityValidator = { module = "org.jetbrains.kotlinx.binary-compatibility-validator:org.jetbrains.kotlinx.binary-compatibility-validator.gradle.plugin", version = "0.17.0" }
1212
bnd = { module = "biz.aQute.bnd:biz.aQute.bnd.gradle", version = "7.1.0" }
13-
burst-gradle-plugin = { module = "app.cash.burst:burst-gradle-plugin", version = "2.4.0" }
13+
burst-gradle-plugin = { module = "app.cash.burst:burst-gradle-plugin", version = "2.5.0" }
1414
dokka = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version = "2.0.0" }
1515
jmh-core = { module = "org.openjdk.jmh:jmh-core", version.ref = "jmh" }
1616
jmh-generator = { module = "org.openjdk.jmh:jmh-generator-annprocess", version.ref = "jmh" }

samples/build.gradle.kts

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
plugins {
22
kotlin("multiplatform")
3-
application
4-
}
5-
6-
application {
7-
mainClass.set(System.getProperty("mainClass"))
83
}
94

105
kotlin {
116
jvm {
12-
withJava()
7+
binaries {
8+
executable {
9+
mainClass.set(System.getProperty("mainClass"))
10+
}
11+
}
1312
}
1413
sourceSets {
1514
commonMain {

0 commit comments

Comments
 (0)