Skip to content

Commit 45cf64c

Browse files
committed
Drop JDK6 on travis build #1207
1 parent 5623828 commit 45cf64c

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

.travis.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
language: java
22
sudo: false
33

4-
addons:
5-
apt:
6-
packages:
7-
- openjdk-6-jdk
8-
94
jdk:
105
- oraclejdk9
116
- oraclejdk8
127
- openjdk8
138
- openjdk7
14-
- openjdk6
159

1610
before_install:
1711
- echo "MAVEN_OPTS='-Dlicense.skip=true'" > ~/.mavenrc

travis/install.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@
1515
# limitations under the License.
1616
#
1717

18-
if [ $TRAVIS_JDK_VERSION == "openjdk6" ]; then
19-
# Java 1.6
20-
./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pjava16 --settings ./travis/settings.xml
21-
elif [ $TRAVIS_JDK_VERSION == "openjdk7" ]; then
18+
if [ $TRAVIS_JDK_VERSION == "openjdk7" ]; then
2219
# Java 1.7
2320
./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pjava17 --settings ./travis/settings.xml
2421
else

0 commit comments

Comments
 (0)