diff --git a/build.gradle.kts b/build.gradle.kts index 191f9b8f..7e8191c0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,7 +3,7 @@ import java.text.SimpleDateFormat import java.util.* plugins { - kotlin("jvm") version "1.5.31" + kotlin("jvm") version "1.6.10" id("maven-publish") id("signing") id("com.github.ben-manes.versions") version "0.42.0" @@ -21,7 +21,7 @@ dependencies { implementation("org.slf4j:slf4j-api") { version { strictly("[1.7,1.8)") - prefer("1.7.32") + prefer("1.7.36") } } listOf( @@ -33,8 +33,8 @@ dependencies { ).onEach { implementation(it) { version { - strictly("[1.3,1.6)") - prefer("1.5.31") + strictly("[1.3,1.7)") + prefer("1.6.10") } } } @@ -50,11 +50,11 @@ dependencies { } } } - implementation("org.jetbrains.kotlin:kotlin-stdlib") - implementation("org.jetbrains.kotlin:kotlin-reflect") + implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.10") + implementation("org.jetbrains.kotlin:kotlin-reflect:1.6.10") implementation("io.github.microutils:kotlin-logging:2.1.21") - implementation("org.slf4j:slf4j-api") + implementation("org.slf4j:slf4j-api:1.7.36") testRuntimeOnly("ch.qos.logback:logback-classic:1.2.10") implementation("org.yaml:snakeyaml:1.30") @@ -65,16 +65,16 @@ dependencies { implementation("com.google.re2j:re2j:1.6") // implementation("com.github.fge:json-schema-validator:2.2.6") - testImplementation("org.jetbrains.kotlin:kotlin-test-junit5") - testImplementation("io.kotest:kotest-runner-junit5:4.6.4") - testRuntimeOnly("org.junit.platform:junit-platform-launcher") + testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:1.6.10") + testImplementation("io.kotest:kotest-runner-junit5:5.1.0") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.8.1") } val dependencyVersions = listOf( - "org.jetbrains.kotlin:kotlin-stdlib:1.5.31", - "org.jetbrains.kotlin:kotlin-stdlib-common:1.5.31", - "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2", - "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2" + "org.jetbrains.kotlin:kotlin-stdlib:1.6.10", + "org.jetbrains.kotlin:kotlin-stdlib-common:1.6.10", + "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0", + "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.0" ) val dependencyGroupVersions = mapOf(