KSLog/gradle/libs.versions.toml

45 lines
1.8 KiB
TOML
Raw Permalink Normal View History

2022-06-07 09:17:21 +00:00
[versions]
kotlin = "1.9.24"
kotlin-gradle-plugin = "8.3.2"
2022-06-07 09:17:21 +00:00
2024-03-15 07:16:49 +00:00
versions = "0.51.0"
2023-07-28 06:13:27 +00:00
2024-03-15 07:16:49 +00:00
dokka = "1.9.20"
2022-12-05 01:51:29 +00:00
2023-04-13 04:52:05 +00:00
dexcount = "4.0.0"
2022-06-07 09:17:21 +00:00
junit_version = "4.12"
2023-06-19 16:47:41 +00:00
test_ext_junit_version = "1.1.5"
espresso_core = "3.5.1"
2022-06-07 09:17:21 +00:00
android-minSdk = "21"
2023-09-06 13:05:12 +00:00
android-compileSdk = "34"
android-buildTools = "34.0.0"
2022-06-07 09:17:21 +00:00
2024-01-16 06:47:07 +00:00
github-release = "2.5.2"
2022-06-07 16:22:28 +00:00
2022-06-07 09:17:21 +00:00
[libraries]
kotlin = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
kotlin-test-common = { module = "org.jetbrains.kotlin:kotlin-test-common", version.ref = "kotlin" }
kotlin-test-annotations-common = { module = "org.jetbrains.kotlin:kotlin-test-annotations-common", version.ref = "kotlin" }
kotlin-test-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
kotlin-test-js = { module = "org.jetbrains.kotlin:kotlin-test-js", version.ref = "kotlin" }
android-test-junit = { module = "androidx.test.ext:junit", version.ref = "test_ext_junit_version" }
android-test-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "espresso_core" }
# buildscript classpaths
android-tools-build = { module = "com.android.tools.build:gradle", version.ref = "kotlin-gradle-plugin" }
android-dexcount = { module = "com.getkeepsafe.dexcount:dexcount-gradle-plugin", version.ref = "dexcount" }
kotlin-gradle-plugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
2022-12-05 01:53:25 +00:00
kotlin-dokka-plugin = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "dokka" }
2022-06-07 16:22:28 +00:00
github-release = { module = "com.github.breadmoirai:github-release", version.ref = "github-release" }
2022-06-07 09:17:21 +00:00
[plugins]
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
2022-12-05 01:51:29 +00:00
kotlin-dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
2023-07-28 06:13:27 +00:00
versions = { id = "com.github.ben-manes.versions", version.ref = "versions" }