Skip to content

Commit

Permalink
travis: also build with java 9
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalSchumacher committed Feb 4, 2018
1 parent 0a00b74 commit 8480079
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ sudo: false
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9

after_success:
- mvn clean cobertura:cobertura coveralls:report
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -483,5 +483,15 @@
</plugins>
</build>
</profile>
<profile>
<id>java9</id>
<activation>
<jdk>9</jdk>
</activation>
<properties>
<!-- coverall version 4.3.0 does not work with java 9, see https://github.com/trautonen/coveralls-maven-plugin/issues/112 -->
<coveralls.skip>true</coveralls.skip>
</properties>
</profile>
</profiles>
</project>

0 comments on commit 8480079

Please sign in to comment.