Skip to content
This repository was archived by the owner on Feb 5, 2026. It is now read-only.

Commit 5eca948

Browse files
authored
LOG-13599 Attempt to fix Travis builds (#9)
LOG-13599 Attempt to fix Travis builds
2 parents 77e950f + f1c0f4a commit 5eca948

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
language: java
22
jdk:
3-
- openjdk7
4-
- oraclejdk7
5-
- oraclejdk8
3+
- openjdk8
4+
- openjdk9
5+
- openjdk10
6+
- openjdk11
7+
- openjdk12
68
before_install:
79
# override default MAVEN_OPTS
810
- echo "MAVEN_OPTS='-Xms1g -Xmx2g -XX:MaxPermSize=512m'" > ~/.mavenrc
@@ -11,4 +13,4 @@ before_install:
1113
- sudo hostname "$(hostname | cut -c1-63)"
1214
- sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/" /etc/hosts > /tmp/hosts
1315
- sudo mv /tmp/hosts /etc/hosts
14-
- cat /etc/hosts # optionally check the content *after*
16+
- cat /etc/hosts # optionally check the content *after*

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<artifactId>maven-compiler-plugin</artifactId>
4444
<version>2.0.2</version>
4545
<configuration>
46-
<source>1.6</source>
47-
<target>1.6</target>
46+
<source>1.8</source>
47+
<target>1.8</target>
4848
</configuration>
4949
</plugin>
5050
<plugin>

0 commit comments

Comments
 (0)