diff --git a/build.gradle.kts b/build.gradle.kts index 0e0b893f002..6b68b178479 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,8 +16,8 @@ * along with this program. If not, see http://www.gnu.org/licenses/. */ -import com.github.leandroborgesferreira.dagcommand.DagCommandPlugin -import com.github.leandroborgesferreira.dagcommand.extension.CommandExtension +import io.github.leandroborgesferreira.dagcommand.DagCommandPlugin +import io.github.leandroborgesferreira.dagcommand.extension.CommandExtension import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnLockMismatchReport import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension @@ -37,7 +37,7 @@ buildscript { classpath("com.google.protobuf:protobuf-gradle-plugin:${libs.versions.protobufCodegen.get()}") classpath("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:${libs.versions.detekt.get()}") classpath("io.gitlab.arturbosch.detekt:detekt-cli:${libs.versions.detekt.get()}") - classpath("com.github.leandroborgesferreira:dag-command:1.5.3") + classpath("io.github.leandroborgesferreira:dag-command:${libs.versions.dagCommand.get()}") } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f80ce384bc7..ccb33decf0d 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,66 +1,67 @@ [versions] kotlin = "1.9.23" -activity-compose = "1.3.1" -app-compat = "1.1.0" +activity-compose = "1.9.0" +app-compat = "1.6.1" android-paging3 = "3.2.1" cli-kt = "3.5.0" coroutines = "1.8.0" compose-compiler = "1.5.11" -compose-ui = "1.3.2" -compose-material = "1.3.1" +compose-ui = "1.6.6" +compose-material = "1.6.6" cryptobox4j = "1.4.0" cryptobox-android = "1.1.5" android-security = "1.1.0-alpha06" -ktor = "2.3.9" -okio = "3.7.0" -ok-http = "4.11.0" +ktor = "2.3.10" +okio = "3.9.0" +ok-http = "4.12.0" mockative = "2.2.0" android-work = "2.9.0" -android-test-runner = "1.5.0" +android-test-runner = "1.5.2" android-test-core-ktx = "1.5.0" android-test-rules = "1.5.0" -android-test-core = "1.4.0" +android-test-core = "1.5.0" androidx-arch = "2.2.0" androidx-test-orchestrator = "1.4.2" androidx-sqlite = "2.4.0" benasher-uuid = "0.8.0" ktx-datetime = { strictly = "0.5.0" } -ktx-serialization = "1.5.1" -ktx-atomicfu = "0.23.2" -kover = "0.7.5" +ktx-serialization = "1.6.3" +ktx-atomicfu = "0.24.0" +kover = "0.7.6" multiplatform-settings = "1.1.1" -moduleGraph = "0.5.0" +moduleGraph = "0.7.0" # if you update sqlDelight check if https://github.com/cashapp/sqldelight/issues/4154 is fixed # and delete the workaround in the dev.mk file sqldelight = "2.0.1" -sqlcipher-android = "4.5.5" +sqlcipher-android = "4.5.6" pbandk = "0.14.2" -turbine = "1.0.0" +turbine = "1.1.0" avs = "9.7.9" jna = "5.14.0" core-crypto = "1.0.0-rc.54" core-crypto-multiplatform = "0.6.0-rc.3-multiplatform-pre1" completeKotlin = "1.1.0" desugar-jdk = "2.0.4" -kermit = "2.0.1" +kermit = "2.0.3" detekt = "1.23.6" agp = "8.2.0" dokka = "1.8.20" carthage = "0.0.1" -libsodiumBindings = "0.8.6" +libsodiumBindings = "0.8.7" protobufCodegen = "0.9.4" -annotation = "1.7.0" +annotation = "1.7.1" mordant = "2.0.0-beta13" -apache-tika = "2.8.0" +apache-tika = "2.9.2" mockk = "1.13.10" -faker = "1.15.0" -robolectric = "4.11.1" -stately = "2.0.6" -micrometer = "1.11.3" -konsist = "0.13.0" -postgres = "1.0.2.RELEASE" +faker = "1.16.0" +robolectric = "4.12.1" +stately = "2.0.7" +micrometer = "1.12.5" +konsist = "0.15.1" +postgres = "1.0.5.RELEASE" r2dbc = "1.0.0.RELEASE" -slf4js = "2.0.10" +slf4js = "2.0.13" +dagCommand = "1.9.0" [plugins] # Home-made convention plugins @@ -73,7 +74,7 @@ kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" } -ksp = { id = "com.google.devtools.ksp", version = "1.9.23-1.0.19" } +ksp = { id = "com.google.devtools.ksp", version = "1.9.23-1.0.20" } carthage = { id = "com.wire.carthage-gradle-plugin", version.ref = "carthage" } sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" } protobuf = { id = "com.google.protobuf", version.ref = "protobufCodegen" }