files/gradle/compile/java.gradle

48 lines
967 B
Groovy
Raw Normal View History

2021-11-29 15:44:33 +01:00
apply plugin: 'java-library'
java {
modularity.inferModulePath.set(true)
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2021-11-29 15:44:33 +01:00
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2021-11-29 15:44:33 +01:00
}
jar {
manifest {
attributes('Implementation-Title': project.name)
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'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar, javadocJar
}
tasks.withType(JavaCompile) {
options.compilerArgs.add('-Xlint:all,-exports')
options.encoding = 'UTF-8'
2021-11-29 15:44:33 +01:00
}
tasks.withType(Javadoc) {
2021-11-29 15:44:33 +01:00
options.addStringOption('Xdoclint:none', '-quiet')
options.encoding = 'UTF-8'
2021-11-29 15:44:33 +01:00
}