2020-05-20 14:56:37 +02:00
|
|
|
|
|
|
|
apply plugin: 'java-library'
|
|
|
|
|
|
|
|
java {
|
2023-10-24 10:41:15 +02:00
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
|
|
}
|
|
|
|
|
2020-05-20 14:56:37 +02:00
|
|
|
modularity.inferModulePath.set(true)
|
2023-05-26 22:57:11 +02:00
|
|
|
withSourcesJar()
|
|
|
|
withJavadocJar()
|
2020-05-20 14:56:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes('Implementation-Version': project.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-05 10:40:42 +02:00
|
|
|
tasks.withType(JavaCompile) {
|
2023-10-24 10:41:15 +02:00
|
|
|
options.fork = true
|
|
|
|
options.forkOptions.jvmArgs += ['-Duser.language=en','-Duser.country=US']
|
|
|
|
options.compilerArgs.add('-Xlint:all')
|
2022-11-06 21:12:04 +01:00
|
|
|
options.encoding = 'UTF-8'
|
2020-06-05 10:40:42 +02:00
|
|
|
}
|
|
|
|
|
2022-11-06 21:12:04 +01:00
|
|
|
tasks.withType(Javadoc) {
|
2020-06-05 10:40:42 +02:00
|
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
2022-11-06 21:12:04 +01:00
|
|
|
options.encoding = 'UTF-8'
|
2020-06-05 10:40:42 +02:00
|
|
|
}
|