Skip to content

Commit 1262b2b

Browse files
committed
[ci] Remove oraclejdk7 from install.sh and update else to note for java 9 too
1 parent e26588c commit 1262b2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

travis/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
if [ $TRAVIS_JDK_VERSION == "openjdk6" ]; then
1919
# Java 1.6
2020
./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pjava16 --settings ./travis/settings.xml
21-
elif [ $TRAVIS_JDK_VERSION == "oraclejdk7" ] || [ $TRAVIS_JDK_VERSION == "openjdk7" ]; then
21+
elif [ $TRAVIS_JDK_VERSION == "openjdk7" ]; then
2222
# Java 1.7
2323
./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pjava17 --settings ./travis/settings.xml
2424
else
25-
# Java 1.8
25+
# Java 1.8 and 9
2626
./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V --settings ./travis/settings.xml
2727
fi

0 commit comments

Comments
 (0)