From 8d8623c69fc476543ce6eb2737853878b592574e Mon Sep 17 00:00:00 2001 From: "Kenneth J. Shackleton" Date: Sun, 16 Jul 2023 09:49:39 +0100 Subject: [PATCH 1/4] Kotlin 1.9.0. Signed-off-by: Kenneth J. Shackleton --- buildSrc/src/main/kotlin/Versions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index ae9e3b1142..7c5808ae51 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -38,7 +38,7 @@ enum class Versions( JSR_305("3.0.2", URL("https://code.google.com/archive/p/jsr-305/")), JUNIT4("4.13.2", URL("https://github.com/junit-team/junit4")), JUNIT5("5.9.3", URL("https://junit.org/junit5/")), - KOTLIN("1.8.22", URL("https://github.com/JetBrains/kotlin")), + KOTLIN("1.9.0", URL("https://github.com/JetBrains/kotlin")), KOTLIN_TEST(KOTLIN.version, URL("https://github.com/JetBrains/kotlin")), KOTLINX_COROUTINES("1.6.4", URL("https://github.com/Kotlin/kotlinx.coroutines")), KOTLINX_KOVER("0.7.2", URL("https://github.com/Kotlin/kotlinx-kover")), From 7cf78ed3deff860b33423beb9ecf0798d88423c7 Mon Sep 17 00:00:00 2001 From: "Kenneth J. Shackleton" Date: Sun, 16 Jul 2023 09:49:54 +0100 Subject: [PATCH 2/4] Kotlin Coroutines 1.7.2. Signed-off-by: Kenneth J. Shackleton --- buildSrc/src/main/kotlin/Versions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 7c5808ae51..c854b8433f 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -40,7 +40,7 @@ enum class Versions( JUNIT5("5.9.3", URL("https://junit.org/junit5/")), KOTLIN("1.9.0", URL("https://github.com/JetBrains/kotlin")), KOTLIN_TEST(KOTLIN.version, URL("https://github.com/JetBrains/kotlin")), - KOTLINX_COROUTINES("1.6.4", URL("https://github.com/Kotlin/kotlinx.coroutines")), + KOTLINX_COROUTINES("1.7.2", URL("https://github.com/Kotlin/kotlinx.coroutines")), KOTLINX_KOVER("0.7.2", URL("https://github.com/Kotlin/kotlinx-kover")), KTLINT("0.45.2", URL("https://github.com/pinterest/ktlint")), KTLINT_GRADLE_PLUGIN("11.0.0", URL("https://github.com/JLLeitschuh/ktlint-gradle")), From 2fd666196feaf04c65dff26bbd0dce2e557d0d7d Mon Sep 17 00:00:00 2001 From: "Kenneth J. Shackleton" Date: Sun, 16 Jul 2023 09:50:18 +0100 Subject: [PATCH 3/4] Dokka 1.8.20. Signed-off-by: Kenneth J. Shackleton --- buildSrc/src/main/kotlin/Versions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index c854b8433f..86a47fd29f 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -30,7 +30,7 @@ enum class Versions( ANDROIDX_ROOM("2.5.1", URL("https://developer.android.com/jetpack/androidx/releases/room")), CMAKE("3.22.1", URL("https://cmake.org")), DETEKT("1.22.0", URL("https://github.com/arturbosch/detekt")), - DOKKA("1.8.10", URL("https://github.com/Kotlin/dokka")), + DOKKA("1.8.20", URL("https://github.com/Kotlin/dokka")), GRADLE_DOWNLOAD_TASK_PLUGIN("5.4.0", URL("https://github.com/michel-kraemer/gradle-download-task")), GRADLE_LICENSEE_PLUGIN("1.6.0", URL("https://github.com/cashapp/licensee")), IDE_EXT_GRADLE_PLUGIN("1.1.7", URL("https://github.com/JetBrains/gradle-idea-ext-plugin")), From ed105a58214c4a4ace6c844da3f1e93ffd3b7f2d Mon Sep 17 00:00:00 2001 From: "Kenneth J. Shackleton" Date: Sun, 16 Jul 2023 10:00:33 +0100 Subject: [PATCH 4/4] Address warning that candidate resolution will be changed soon. Signed-off-by: Kenneth J. Shackleton --- build.gradle.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index e717e06bcc..67810027cc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,6 +16,7 @@ import com.android.build.api.dsl.ApplicationExtension import com.android.build.api.dsl.LibraryExtension +import io.github.gradlenexus.publishplugin.NexusRepositoryContainer import io.gitlab.arturbosch.detekt.Detekt import io.gitlab.arturbosch.detekt.extensions.DetektExtension import java.net.URL @@ -51,9 +52,9 @@ version = selektVersionName logger.quiet("Group: {}; Version: {}", group, version) nexusPublishing { - repositories { + repositories(Action { sonatype() - } + }) transitionCheckOptions { maxRetries.set(180) delayBetween.set(Duration.ofSeconds(10L))