We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab76f30 commit c5e8764Copy full SHA for c5e8764
1 file changed
de.peeeq.wurstscript/build.gradle
@@ -34,6 +34,13 @@ java {
34
}
35
36
37
+def toolchainSvc = extensions.getByType(JavaToolchainService)
38
+def j25Launcher = toolchainSvc.launcherFor(java.toolchain)
39
+
40
+tasks.withType(JavaExec).configureEach {
41
+ javaLauncher.set(j25Launcher)
42
+}
43
44
tasks.withType(JavaCompile).configureEach { options.release = 25 }
45
46
jacoco {
0 commit comments