| plugins { | |
| id("gradlebuild.distribution.implementation-java") | |
| } | |
| description = "A Java compiler plugin used by Gradle's incremental compiler" | |
| tasks.withType<JavaCompile>().configureEach { | |
| options.release = null | |
| sourceCompatibility = "8" | |
| targetCompatibility = "8" | |
| } | |
| tasks.withType<Test>().configureEach { | |
| if (!javaVersion.isJava9Compatible) { | |
| classpath += javaLauncher.get().metadata.installationPath.files("lib/tools.jar") | |
| } | |
| } |