Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update org.seasar.doma:doma to v3 (major) #210

Merged
merged 3 commits into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sdkmanrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Enable auto-env through the sdkman_auto_env config
# Add key=value pairs of SDKs to use below
java=11.0.23-zulu
java=21-zulu
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ plugins {
kotlin("kapt") version "2.0.20"
}

kotlin {
jvmToolchain {
(this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(17))
}
}
application {
mainClass.set("sample.AppKt")
}
Expand Down Expand Up @@ -66,7 +71,7 @@ domaCodeGen {
}

tasks {
val jvmTarget = JvmTarget.JVM_11
val jvmTarget = JvmTarget.JVM_17

compileKotlin {
compilerOptions.jvmTarget = jvmTarget
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
domaVersion=2.62.1
domaVersion=3.0.1
kapt.incremental.apt=true
kapt.use.worker.api=true
kapt.include.compile.classpath=false