1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-29 16:23:55 +00:00

Merge pull request #850 from soloturn/master

build.gradle.kts, add javadoc
This commit is contained in:
PlantUML 2022-01-07 12:00:27 +01:00 committed by GitHub
commit 89a9227afd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 67 additions and 46 deletions

13
.editorconfig Normal file
View File

@ -0,0 +1,13 @@
# Editor configuration, see http://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
trim_trailing_whitespace = true
[*.md]
max_line_length = off
trim_trailing_whitespace = false

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")
}
}