2022-10-20 10:19:32 +02:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
|
|
|
|
java {
|
|
|
|
modularity.inferModulePath.set(true)
|
2023-04-05 21:55:24 +02:00
|
|
|
withSourcesJar()
|
|
|
|
withJavadocJar()
|
2022-10-20 10:19:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
compileJava {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
|
|
}
|
|
|
|
|
|
|
|
compileTestJava {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes('Implementation-Version': project.version)
|
|
|
|
}
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
|
|
|
}
|
|
|
|
|
2022-11-04 16:51:12 +01:00
|
|
|
tasks.withType(JavaCompile) {
|
2022-11-06 20:51:25 +01:00
|
|
|
options.compilerArgs.add('-Xlint:all,-exports')
|
2022-11-04 16:51:12 +01:00
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(Javadoc) {
|
|
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
}
|