Skip to content

Commit

Permalink
Build on JDK9 on Travis
Browse files Browse the repository at this point in the history
Set up Travis profiles to build with JDK 7-9. Requires running on
different Ubuntu distributions and thus the build is moved to a
matrix.include configuration.
  • Loading branch information
protocol7 committed Jul 4, 2017
1 parent ce1f4e9 commit 816c3f2
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,21 @@ secure: "H4tUL1Greyj588Kb1/FnRapFT/57KaApQYAZx2KRORkddYSzPq2tovI1S8AnqzCHpVtfjin

language: java

jdk:
- oraclejdk8
- oraclejdk7
- openjdk7

matrix:
include:
- os: linux
dist: trusty
jdk: oraclejdk8
- os: linux
dist: trusty
jdk: oraclejdk9
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
dist: precise
jdk: openjdk7

install:
- mvn install -DskipTests=true -Dgpg.skip=true
Expand Down

0 comments on commit 816c3f2

Please sign in to comment.