content/gradle/compile/java.gradle

36 lines
670 B
Groovy
Raw Normal View History

apply plugin: 'java-library'
java {
modularity.inferModulePath.set(true)
withSourcesJar()
withJavadocJar()
}
compileJava {
2022-10-14 18:07:46 +02:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
compileTestJava {
2022-10-14 18:07:46 +02:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
jar {
manifest {
attributes('Implementation-Version': project.version)
}
}
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:all'
2022-11-07 23:13:54 +01:00
options.encoding = 'UTF-8'
}
2022-11-07 23:13:54 +01:00
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
2022-11-07 23:13:54 +01:00
options.encoding = 'UTF-8'
}