standardnumber/gradle/compile/java.gradle

35 lines
680 B
Groovy
Raw Normal View History

2020-06-08 15:07:03 +02:00
apply plugin: 'java-library'
java {
modularity.inferModulePath.set(true)
2023-05-24 12:13:08 +02:00
withSourcesJar()
withJavadocJar()
2020-06-08 15:07:03 +02:00
}
compileJava {
2023-03-06 17:31:22 +01:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2020-06-08 15:07:03 +02:00
}
compileTestJava {
2023-03-06 17:31:22 +01:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2020-06-08 15:07:03 +02:00
}
jar {
manifest {
attributes('Implementation-Version': project.version)
}
}
tasks.withType(JavaCompile) {
2023-03-06 17:31:22 +01:00
options.compilerArgs.add('-Xlint:all,-exports')
options.encoding = 'UTF-8'
2020-06-08 15:07:03 +02:00
}
2023-03-06 17:31:22 +01:00
tasks.withType(Javadoc) {
2020-06-08 15:07:03 +02:00
options.addStringOption('Xdoclint:none', '-quiet')
2023-03-06 17:31:22 +01:00
options.encoding = 'UTF-8'
2020-06-08 15:07:03 +02:00
}