files/gradle/compile/java.gradle

30 lines
614 B
Groovy
Raw Permalink Normal View History

2021-11-29 15:44:33 +01:00
apply plugin: 'java-library'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
2021-11-29 15:44:33 +01:00
modularity.inferModulePath.set(true)
2023-05-24 21:08:11 +02:00
withSourcesJar()
withJavadocJar()
2021-11-29 15:44:33 +01:00
}
jar {
manifest {
attributes('Implementation-Version': project.version)
}
}
tasks.withType(JavaCompile) {
options.fork = true
options.forkOptions.jvmArgs += ['-Duser.language=en','-Duser.country=US']
options.compilerArgs.add('-Xlint:all')
options.encoding = 'UTF-8'
2021-11-29 15:44:33 +01:00
}
tasks.withType(Javadoc) {
2021-11-29 15:44:33 +01:00
options.addStringOption('Xdoclint:none', '-quiet')
options.encoding = 'UTF-8'
2021-11-29 15:44:33 +01:00
}