Skip to content

Commit

Permalink
Update Komapper to v2.2.0 (#184)
Browse files Browse the repository at this point in the history
* Update Komapper to v2.2.0

* Remove deprecated compiler option
  • Loading branch information
nakamura-to authored Aug 17, 2024
1 parent 5d00f63 commit 912b172
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
Expand All @@ -11,7 +12,7 @@ application {
}

dependencies {
val komapperVersion = "2.1.0"
val komapperVersion = "2.2.0"
platform("org.komapper:komapper-platform:$komapperVersion").let {
implementation(it)
ksp(it)
Expand All @@ -34,6 +35,8 @@ tasks {
}

withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = "11"
compilerOptions {
jvmTarget.set(JvmTarget.JVM_11)
}
}
}

0 comments on commit 912b172

Please sign in to comment.