datastructures/gradle/compile/java.gradle

46 lines
879 B
Groovy
Raw Normal View History

2020-09-12 22:42:03 +02:00
apply plugin: 'java-library'
java {
modularity.inferModulePath.set(true)
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
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'
2021-07-14 11:18:11 +02:00
from javadoc.destinationDir
2020-09-12 22:42:03 +02:00
}
artifacts {
archives sourcesJar, javadocJar
}
2021-04-08 22:36:40 +02:00
tasks.withType(JavaCompile) {
// commented out mostly because of jmh generated code
// options.compilerArgs << '-Xlint:all'
}
2020-09-12 22:42:03 +02:00
javadoc {
options.addStringOption('Xdoclint:none', '-quiet')
}