diff --git a/latte/build.gradle.kts b/latte/build.gradle.kts index 8745253..85ca115 100644 --- a/latte/build.gradle.kts +++ b/latte/build.gradle.kts @@ -1,7 +1,7 @@ plugins { `java-library` - kotlin("jvm") version "1.9.20" - id("com.google.devtools.ksp") version "1.9.20-1.0.14" + kotlin("jvm") version "2.0.21" + id("com.google.devtools.ksp") version "2.0.21-1.0.25" } group = "gg.beemo.latte" @@ -10,7 +10,7 @@ version = "1.0.0" dependencies { // Kotlin - val kotlinCoroutinesVersion = "1.7.3" + val kotlinCoroutinesVersion = "1.9.0" implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion") testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinCoroutinesVersion") @@ -24,18 +24,18 @@ dependencies { implementation("com.rabbitmq:amqp-client:$rabbitVersion") // JSON - val moshiVersion = "1.14.0" + val moshiVersion = "1.15.1" implementation("com.squareup.moshi:moshi:$moshiVersion") ksp("com.squareup.moshi:moshi-kotlin-codegen:$moshiVersion") // Misc implementation("org.jetbrains:annotations:24.1.0") - val log4jVersion = "2.22.0" + val log4jVersion = "2.24.1" compileOnly("org.apache.logging.log4j:log4j-api:$log4jVersion") testImplementation("org.apache.logging.log4j:log4j-core:$log4jVersion") // JUnit testing framework - val junitVersion = "5.10.1" + val junitVersion = "5.11.2" testImplementation("org.junit.jupiter:junit-jupiter-api:$junitVersion") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")