Skip to content

Commit

Permalink
Upgrade latte to same Kotlin version as vanilla
Browse files Browse the repository at this point in the history
  • Loading branch information
wasdennnoch committed Dec 7, 2024
1 parent 8299ec1 commit cf8763c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions latte/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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")

Expand All @@ -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")

Expand Down

0 comments on commit cf8763c

Please sign in to comment.