Skip to content

Commit 7f4c53c

Browse files
Use klogging in toml
1 parent ace0180 commit 7f4c53c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

composeApp/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ kotlin {
3636

3737
implementation(libs.kotlinx.datetime)
3838

39-
implementation("io.klogging:klogging-jvm:0.7.2")
39+
implementation(libs.klogging)
4040
}
4141
// https://gist.github.com/OysterD3?page=3
4242
// https://betterprogramming.pub/how-to-create-an-auto-updater-for-desktop-application-jetpack-compose-d118db26d65f

gradle/libs.versions.toml

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ koin = "3.4.3"
1212

1313
datetime = "0.6.1"
1414

15+
klogging = "0.7.2"
16+
1517
[libraries]
1618
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
1719
kotlin-test-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
@@ -29,6 +31,10 @@ koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }
2931
kotlinx-datetime = { group = "org.jetbrains.kotlinx", name = "kotlinx-datetime", version.ref = "datetime" }
3032

3133

34+
klogging = { module = "io.klogging:klogging-jvm", version.ref = "klogging" }
35+
36+
37+
3238
[plugins]
3339
jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose-plugin" }
3440
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }

0 commit comments

Comments
 (0)