1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-05 21:17:52 +00:00

build.gradle.kts, add javadoc

This commit is contained in:
soloturn 2022-01-07 00:36:03 +01:00
parent 4d61b35821
commit 39331af67e

View File

@ -22,7 +22,7 @@ java.sourceCompatibility = JavaVersion.VERSION_1_8
java { java {
withSourcesJar() withSourcesJar()
// withJavadocJar() withJavadocJar()
} }
sourceSets { sourceSets {
@ -75,3 +75,11 @@ publishing {
tasks.withType<JavaCompile> { tasks.withType<JavaCompile> {
options.encoding = "UTF-8" options.encoding = "UTF-8"
} }
tasks.withType<Javadoc> {
options {
this as StandardJavadocDocletOptions
addStringOption("Xdoclint:none", "-quiet")
addStringOption("Xmaxwarns", "1")
}
}