Skip to content
Snippets Groups Projects
Commit f9d17e5f authored by René Schöne's avatar René Schöne
Browse files

1.1.0

- include parts using lambda functions
- children of excluded children are now surveyed as well (previously excluded)
- disable doclint (JavaDoc linter)
parent 61859276
No related branches found
No related tags found
1 merge request!111.1.0
Pipeline #13989 passed
......@@ -4,3 +4,11 @@ plugins {
}
java.toolchain.languageVersion = JavaLanguageVersion.of(11)
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment