fix: javadoc tolerate bad html

and match encoding, ugh
This commit is contained in:
stdpi
2024-09-22 04:48:18 +07:00
parent 6c6c9654c1
commit 0a001b8a63

View File

@@ -158,6 +158,11 @@ allprojects {
options.compilerArgs << '-parameters'
options.encoding = "UTF-8"
}
javadoc {
options.encoding = "UTF-8"
options.addStringOption('Xdoclint:none', '-quiet')
}
}
if (JavaVersion.current().toString() != "17") {