Skip to content

Commit b490b63

Browse files
committed
Upgrade Kotlin to 2.0.0
1 parent 6ecec53 commit b490b63

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
22
alias(libs.plugins.kotlin)
3+
alias(libs.plugins.compose.compiler)
34
alias(libs.plugins.compose)
45
id("jacoco")
56
}

gradle/libs.versions.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[versions]
2+
kotlin = "2.0.0"
23
junit5 = "5.10.2"
34

45
[plugins]
5-
compose = "org.jetbrains.compose:1.6.2"
6-
kotlin = "org.jetbrains.kotlin.jvm:1.9.23"
6+
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
7+
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
8+
compose = "org.jetbrains.compose:1.6.10"
79

810
[libraries]
911
junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit5" }

0 commit comments

Comments
 (0)