Skip to content

Commit

Permalink
Merge pull request #465 from kennethshackleton/kotlin-updates
Browse files Browse the repository at this point in the history
Round of Kotlin dependency updates.
  • Loading branch information
kennethshackleton committed Jul 16, 2023
2 parents 38d2ebf + f2622dc commit d163af9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -51,9 +52,9 @@ version = selektVersionName
logger.quiet("Group: {}; Version: {}", group, version)

nexusPublishing {
repositories {
repositories(Action<NexusRepositoryContainer> {
sonatype()
}
})
transitionCheckOptions {
maxRetries.set(180)
delayBetween.set(Duration.ofSeconds(10L))
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ 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")),
JMH("1.36", URL("https://openjdk.java.net/projects/code-tools/jmh/")),
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_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")),
Expand Down

0 comments on commit d163af9

Please sign in to comment.