elasticsearch/distribution/tools/java-version-checker/build.gradle
Rene Groeschke cd8fbab5b5
Fix some early tasks creations (#123637)
We want to use the task avoidance api whereever possible and delay task
creation
2025-02-28 07:54:01 +11:00

10 lines
228 B
Groovy

apply plugin: 'elasticsearch.build'
tasks.named("compileJava").configure {
options.release = 8
}
// TODO revisit forbiddenApis issues
["javadoc", "forbiddenApisMain"].each {
tasks.named(it).configure { enabled = false }
}