net/gradle/compile/java.gradle

47 lines
952 B
Groovy
Raw Normal View History

2022-10-20 09:43:33 +02:00
apply plugin: 'java-library'
java {
modularity.inferModulePath.set(true)
}
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
}
tasks.withType(JavaCompile) {
2022-11-02 22:01:27 +01:00
options.compilerArgs.add('-Xlint:all')
options.encoding = 'UTF-8'
2022-10-20 09:43:33 +02:00
}
2022-11-02 22:01:27 +01:00
tasks.withType(Javadoc) {
2022-10-20 09:43:33 +02:00
options.addStringOption('Xdoclint:none', '-quiet')
2022-11-02 22:05:20 +01:00
options.encoding = 'UTF-8'
2022-10-20 09:43:33 +02:00
}
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
}