Merge pull request #405 from zml2008/fix/jd-search

build: Fix search when generating Javadoc with broken java versions
This commit is contained in:
Andrew Steinborn
2020-12-21 15:19:10 -05:00
committed by GitHub

View File

@@ -93,9 +93,14 @@ javadoc {
// Disable the crazy super-strict doclint tool in Java 8 // Disable the crazy super-strict doclint tool in Java 8
options.addStringOption('Xdoclint:none', '-quiet') options.addStringOption('Xdoclint:none', '-quiet')
// Mark sources as Java 8 source compatible // Mark sources as Java 8 source compatible
options.source = '8' options.source = '8'
// Remove 'undefined' from seach paths when generating javadoc for a non-modular project (JDK-8215291)
if (JavaVersion.current() >= JavaVersion.VERSION_1_9 && JavaVersion.current() < JavaVersion.VERSION_12) {
options.addBooleanOption('-no-module-directories', true)
}
} }
test { test {