Skip to content

Commit 4cf9c5a

Browse files
committed
Drop JDK7 on travis build #1207
1 parent e3c73bc commit 4cf9c5a

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ jdk:
55
- oraclejdk9
66
- oraclejdk8
77
- openjdk8
8-
- openjdk7
98

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

travis/install.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
#
3-
# Copyright 2009-2017 the original author or authors.
3+
# Copyright 2009-2018 the original author or authors.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -15,10 +15,4 @@
1515
# limitations under the License.
1616
#
1717

18-
if [ $TRAVIS_JDK_VERSION == "openjdk7" ]; then
19-
# Java 1.7
20-
./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pjava17 --settings ./travis/settings.xml
21-
else
22-
# Java 1.8 and 9
23-
./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V --settings ./travis/settings.xml
24-
fi
18+
./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V --settings ./travis/settings.xml

0 commit comments

Comments
 (0)