files/gradle/compile/java.gradle

47 lines
1.1 KiB
Groovy
Raw Normal View History

2021-11-29 15:44:33 +01:00
apply plugin: 'java-library'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
2021-11-29 15:44:33 +01:00
modularity.inferModulePath.set(true)
2023-05-24 21:08:11 +02:00
withSourcesJar()
withJavadocJar()
2021-11-29 15:44:33 +01:00
}
jar {
manifest {
attributes('Implementation-Version': project.version)
}
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
tasks.withType(JavaCompile).configureEach {
doFirst {
options.fork = true
options.forkOptions.jvmArgs += ['-Duser.language=en', '-Duser.country=US']
options.encoding = 'UTF-8'
options.compilerArgs.add('-Xlint:all')
options.compilerArgs.add("--module-version")
options.compilerArgs.add(project.version as String)
options.compilerArgs.add("--module-path")
options.compilerArgs.add(classpath.asPath)
classpath = files()
}
2021-11-29 15:44:33 +01:00
}
tasks.withType(Javadoc).configureEach {
doFirst {
options.addStringOption('Xdoclint:none', '-quiet')
options.encoding = 'UTF-8'
}
2021-11-29 15:44:33 +01:00
}
tasks.withType(JavaExec).configureEach {
doFirst {
jvmArguments.add("--module-path")
jvmArguments.add(classpath.asPath)
classpath = files()
}
2021-11-29 15:44:33 +01:00
}