2020-05-25 18:43:49 +02:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
|
|
|
|
java {
|
|
|
|
modularity.inferModulePath.set(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
compileJava {
|
2022-11-04 16:12:19 +01:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2020-05-25 18:43:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
compileTestJava {
|
2022-11-04 16:12:19 +01:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2020-05-25 18:43:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes('Implementation-Version': project.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
|
|
classifier 'sources'
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|
|
|
|
|
|
|
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
|
|
classifier 'javadoc'
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives sourcesJar, javadocJar
|
2020-06-04 20:22:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
2022-11-04 16:12:19 +01:00
|
|
|
options.compilerArgs.add('-Xlint:all')
|
|
|
|
options.encoding = 'UTF-8'
|
2020-06-04 20:22:51 +02:00
|
|
|
}
|
|
|
|
|
2022-11-04 16:12:19 +01:00
|
|
|
tasks.withType(Javadoc) {
|
2020-06-04 20:22:51 +02:00
|
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
2022-11-04 16:12:19 +01:00
|
|
|
options.encoding = 'UTF-8'
|
2020-06-04 20:22:51 +02:00
|
|
|
}
|