diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d9722ba..9808e6c 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,12 +3,16 @@ compileSdkVersion = "32" targetSdkVersion = "32" minSdkVersion = "21" +androidGradlePlugin = "7.3.1" +androidxAppCompat = "1.3.1" +asm = "9.6" detekt = "1.22.0" -kotlin = "1.8.21" +junit = "4.13.2" +kotlin = "1.9.10" ktlintGradle = "11.3.2" pluginPublish = "1.2.0" +truth = "1.1.5" versionCheck = "0.46.0" -androidGradlePlugin = "7.3.0" [plugins] detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" } @@ -18,9 +22,9 @@ pluginPublish = { id = "com.gradle.plugin-publish", version.ref = "pluginPublish versionCheck = { id = "com.github.ben-manes.versions", version.ref = "versionCheck" } [libraries] -junit = "junit:junit:4.13.2" -truth = "com.google.truth:truth:1.1.3" -asm = "org.ow2.asm:asm:9.4" androidGradlePlugin = { group = "com.android.tools.build", name = "gradle", version.ref = "androidGradlePlugin" } -appcompat = "androidx.appcompat:appcompat:1.3.1" -kotlinStdlib = "org.jetbrains.kotlin:kotlin-stdlib:1.7.20" +appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "androidxAppCompat" } +asm = { group = "org.ow2.asm", name = "asm", version.ref = "asm" } +junit = { group = "junit", name = "junit", version.ref = "junit" } +kotlinStdlib = { group = "org.jetbrains.kotlin", name = "kotlin-stdlib", version.ref = "kotlin" } +truth = { group = "com.google.truth", name = "truth", version.ref = "truth" }