30 lines
665 B
Groovy
30 lines
665 B
Groovy
|
apply plugin: 'java-library'
|
||
|
|
||
|
java {
|
||
|
toolchain {
|
||
|
languageVersion = JavaLanguageVersion.of(21)
|
||
|
}
|
||
|
modularity.inferModulePath.set(true)
|
||
|
withSourcesJar()
|
||
|
withJavadocJar()
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
manifest {
|
||
|
attributes('Implementation-Version': project.version)
|
||
|
}
|
||
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
||
|
}
|
||
|
|
||
|
tasks.withType(JavaCompile) {
|
||
|
options.fork = true
|
||
|
options.forkOptions.jvmArgs += ['-Duser.language=en','-Duser.country=US']
|
||
|
options.compilerArgs.add('-Xlint:all')
|
||
|
options.encoding = 'UTF-8'
|
||
|
}
|
||
|
|
||
|
tasks.withType(Javadoc) {
|
||
|
options.addStringOption('Xdoclint:none', '-quiet')
|
||
|
options.encoding = 'UTF-8'
|
||
|
}
|