This commit is contained in:
Jack Berg 2023-02-27 18:29:00 -06:00
parent 42f0e16fe7
commit dfa37497f8
1 changed files with 8 additions and 0 deletions

View File

@ -56,3 +56,11 @@ java {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
tasks {
withType<JavaCompile>().configureEach {
with(options) {
release.set(8)
}
}
}