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

@@ -96,6 +96,11 @@ javadoc {
// Mark sources as Java 8 source compatible
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 {