2020-05-19 16:06:39 +02:00
|
|
|
|
|
|
|
apply plugin: 'java-library'
|
|
|
|
|
|
|
|
java {
|
|
|
|
modularity.inferModulePath.set(true)
|
2023-04-25 14:25:29 +02:00
|
|
|
withSourcesJar()
|
|
|
|
withJavadocJar()
|
|
|
|
|
2020-05-19 16:06:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
compileJava {
|
2022-10-14 18:07:46 +02:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2020-05-19 16:06:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
compileTestJava {
|
2022-10-14 18:07:46 +02:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2020-05-19 16:06:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes('Implementation-Version': project.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 23:41:01 +02:00
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.compilerArgs << '-Xlint:all'
|
2022-11-07 23:13:54 +01:00
|
|
|
options.encoding = 'UTF-8'
|
2020-06-04 23:41:01 +02:00
|
|
|
}
|
|
|
|
|
2022-11-07 23:13:54 +01:00
|
|
|
tasks.withType(Javadoc) {
|
2020-06-04 23:41:01 +02:00
|
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
2022-11-07 23:13:54 +01:00
|
|
|
options.encoding = 'UTF-8'
|
2020-06-04 23:41:01 +02:00
|
|
|
}
|