Skip to content

Commit

Permalink
Kotlin 2.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanOltmann committed May 25, 2024
1 parent 3943c03 commit e413d0f
Show file tree
Hide file tree
Showing 4 changed files with 504 additions and 273 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
.DS_Store
.gradle
.idea
/.kotlin/
local.properties
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ kotlin {
val wasmJsMain by getting

commonMain.dependencies {
api("com.ashampoo:kim:0.18.2")
implementation(libs.ashampoo.kim)
}

commonTest.dependencies {
Expand All @@ -43,7 +43,7 @@ kotlin {
}

jvmTest.dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.2")
implementation(libs.kotlinx.io)
}
}
}
6 changes: 5 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
[versions]
junit = "4.13.2"
kotlin = "1.9.24"
kotlin = "2.0.0"
ashampoo-kim = "0.18.3"
kotlinx-io = "0.3.5"

[libraries]
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
kotlin-test-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
ashampoo-kim = { group = "com.ashampoo", name = "kim", version.ref = "ashampoo-kim" }
kotlinx-io = { group = "org.jetbrains.kotlinx", name = "kotlinx-io-core", version.ref = "kotlinx-io" }

[plugins]
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
Loading

0 comments on commit e413d0f

Please sign in to comment.