We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f252e commit 702b526Copy full SHA for 702b526
allure-jooq/build.gradle.kts
@@ -18,10 +18,8 @@ dependencies {
18
testRuntimeOnly("org.postgresql:postgresql:42.7.3")
19
}
20
21
-java {
22
- toolchain {
23
- languageVersion.set(JavaLanguageVersion.of(17))
24
- }
+tasks.compileJava {
+ options.release.set(17)
25
26
27
tasks.jar {
build.gradle.kts
@@ -196,11 +196,7 @@ configure(libs) {
196
tasks {
197
compileJava {
198
options.compilerArgs.add("-Xlint:-options")
199
- if (JavaVersion.current().isJava8) {
200
- java.targetCompatibility = JavaVersion.VERSION_1_8
201
- } else {
202
- options.release.set(8)
203
+ options.release.set(8)
204
205
206
compileTestJava {
0 commit comments