event/gradle/compile/java.gradle

31 lines
666 B
Groovy
Raw Normal View History

2021-12-26 17:42:43 +01:00
apply plugin: 'java-library'
java {
2023-10-01 16:04:07 +02:00
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
2021-12-26 17:42:43 +01:00
modularity.inferModulePath.set(true)
2023-10-01 16:04:07 +02:00
withSourcesJar()
withJavadocJar()
2021-12-26 17:42:43 +01:00
}
jar {
manifest {
attributes('Implementation-Version': project.version)
}
2023-10-01 16:04:07 +02:00
duplicatesStrategy = DuplicatesStrategy.INCLUDE
2021-12-26 17:42:43 +01:00
}
tasks.withType(JavaCompile) {
2023-10-01 16:04:07 +02:00
options.fork = true
options.forkOptions.jvmArgs += ['-Duser.language=en','-Duser.country=US']
options.compilerArgs.add('-Xlint:all')
options.encoding = 'UTF-8'
2021-12-26 17:42:43 +01:00
}
2023-10-01 16:04:07 +02:00
tasks.withType(Javadoc) {
2021-12-26 17:42:43 +01:00
options.addStringOption('Xdoclint:none', '-quiet')
2023-10-01 16:04:07 +02:00
options.encoding = 'UTF-8'
2021-12-26 17:42:43 +01:00
}