Gradle Tasks für source und javadoc jars

This commit is contained in:
ngb 2022-12-08 10:16:07 +01:00
parent 559459aef6
commit 90e043e5f8
1 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,11 @@ plugins {
group 'schule.ngb'
version '0.0.32-SNAPSHOT'
java {
withSourcesJar()
withJavadocJar()
}
compileJava {
options.release = 11
}