net/gradle/compile/java.gradle

35 lines
722 B
Groovy
Raw Normal View History

2022-10-20 09:43:33 +02:00
apply plugin: 'java-library'
java {
modularity.inferModulePath.set(true)
2023-04-05 20:23:01 +02:00
withSourcesJar()
withJavadocJar()
2022-10-20 09:43:33 +02:00
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
jar {
manifest {
attributes('Implementation-Version': project.version)
}
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
2022-11-04 16:49:11 +01:00
tasks.withType(JavaCompile) {
options.compilerArgs.add('-Xlint:all')
options.encoding = 'UTF-8'
}
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.encoding = 'UTF-8'
}