guice/gradle/compile/java.gradle

31 lines
692 B
Groovy
Raw Normal View History

2021-06-03 19:53:05 +02:00
apply plugin: 'java-library'
java {
2025-01-01 14:41:57 +01:00
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
2021-06-03 19:53:05 +02:00
modularity.inferModulePath.set(true)
2023-05-25 22:07:14 +02:00
withSourcesJar()
withJavadocJar()
2021-06-03 19:53:05 +02:00
}
jar {
manifest {
attributes('Implementation-Version': project.version)
}
}
tasks.withType(JavaCompile) {
2025-01-01 14:41:57 +01:00
options.fork = true
options.forkOptions.jvmArgs += ['-Duser.language=en','-Duser.country=US']
options.compilerArgs.add('-Xlint:-requires-transitive-automatic')
options.compilerArgs.add('-Xlint:deprecation')
options.encoding = 'UTF-8'
2021-06-03 19:53:05 +02:00
}
2025-01-01 14:41:57 +01:00
tasks.withType(Javadoc) {
2021-06-03 19:53:05 +02:00
options.addStringOption('Xdoclint:none', '-quiet')
2025-01-01 14:41:57 +01:00
options.encoding = 'UTF-8'
2021-06-03 19:53:05 +02:00
}