content/gradle/compile/java.gradle

47 lines
899 B
Groovy
Raw Normal View History

apply plugin: 'java-library'
java {
modularity.inferModulePath.set(true)
}
compileJava {
2022-10-14 18:07:46 +02:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
compileTestJava {
2022-10-14 18:07:46 +02:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
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'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar, javadocJar
}
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:all'
2022-11-07 23:13:54 +01:00
options.encoding = 'UTF-8'
}
2022-11-07 23:13:54 +01:00
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
2022-11-07 23:13:54 +01:00
options.encoding = 'UTF-8'
}