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