We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d88413 commit 8d85dc5Copy full SHA for 8d85dc5
1 file changed
scripts/build_for_travis.sh
@@ -15,10 +15,12 @@ if echo $TRAVIS_JDK_VERSION | egrep -q '(jdk|jre)[67]($|[^0-9])'; then
15
# but Guava 21.0 is compatibility with jdk 7.
16
COMMON_FLAGS="$COMMON_FLAGS -Dguava.version=20.0"
17
fi
18
-if ! echo $TRAVIS_JDK_VERSION | egrep -q '(jdk|jre)9($|[^0-9])'; then
+if echo $TRAVIS_JDK_VERSION | egrep -q '(jdk|jre)([678]|11)($|[^0-9])'; then
19
# Older versions of javadoc barf on -Xdoclint flags used
20
# to configure the maven-javadoc-plugin.
21
- # TODO: Newer versions barf on modules for some reason.
+ # JDK8 javadoc barfs on the flag "-html5]
22
+ # JDK11 barfs too. https://bugs.openjdk.java.net/browse/JDK-8212233
23
+ # JDK9 is okay. Yay!
24
COMMON_FLAGS="$COMMON_FLAGS -Dmaven.javadoc.skip=true"
25
26
0 commit comments