diff --git a/build.gradle.kts b/build.gradle.kts index 706f4c52..47394ab3 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.9.23" + kotlin("jvm") version "2.0.0" id("maven-publish") id("signing") id("com.github.ben-manes.versions") version "0.51.0" @@ -35,8 +35,8 @@ dependencies { ).forEach { implementation(it) { version { - strictly("[1.6,1.10)") - prefer("1.9.23") + strictly("[1.6,3)") + prefer("2.0.0") } } } @@ -63,8 +63,8 @@ dependencies { } } } - implementation("org.jetbrains.kotlin:kotlin-stdlib:1.9.23") - implementation("org.jetbrains.kotlin:kotlin-reflect:1.9.23") + implementation("org.jetbrains.kotlin:kotlin-stdlib:2.0.0") + implementation("org.jetbrains.kotlin:kotlin-reflect:2.0.0") implementation("io.github.microutils:kotlin-logging:3.0.5") implementation("org.slf4j:slf4j-api:2.0.13") @@ -78,7 +78,7 @@ dependencies { implementation("com.google.re2j:re2j:1.7") // implementation("com.github.fge:json-schema-validator:2.2.6") - testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:1.9.23") + testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:2.0.0") testImplementation("io.kotest:kotest-runner-junit5:5.9.1") testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2") }