Skip to content

Commit

Permalink
Use klogging in toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasBernard03 committed Sep 21, 2024
1 parent ace0180 commit 7f4c53c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ kotlin {

implementation(libs.kotlinx.datetime)

implementation("io.klogging:klogging-jvm:0.7.2")
implementation(libs.klogging)
}
// https://gist.github.com/OysterD3?page=3
// https://betterprogramming.pub/how-to-create-an-auto-updater-for-desktop-application-jetpack-compose-d118db26d65f
Expand Down
6 changes: 6 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ koin = "3.4.3"

datetime = "0.6.1"

klogging = "0.7.2"

[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" }
Expand All @@ -29,6 +31,10 @@ koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }
kotlinx-datetime = { group = "org.jetbrains.kotlinx", name = "kotlinx-datetime", version.ref = "datetime" }


klogging = { module = "io.klogging:klogging-jvm", version.ref = "klogging" }



[plugins]
jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose-plugin" }
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
Expand Down

0 comments on commit 7f4c53c

Please sign in to comment.