Skip to content
Merged
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
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jar {
}

java {
// Specify to gradle that the project expects to be built with java 21, but produce output compatible with Java 8
sourceCompatibility = JavaVersion.VERSION_1_8
toolchain.languageVersion = JavaLanguageVersion.of(21)
}

test {
Expand Down Expand Up @@ -129,10 +131,6 @@ dependencies {
annotationProcessor "info.picocli:picocli-codegen:${picocliVersion}"
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
}

compileJava {
options.encoding = 'utf-8'
}
Expand Down