Skip to content

Commit

Permalink
travis: add java 9 to build (closes #27)
Browse files Browse the repository at this point in the history
pom.xml: add java 9 profile to make build pass
  • Loading branch information
PascalSchumacher committed Oct 12, 2017
1 parent b15deac commit 8741715
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -19,6 +19,7 @@ sudo: false
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9

script:
- mvn
Expand Down
12 changes: 12 additions & 0 deletions pom.xml
Expand Up @@ -720,6 +720,18 @@
</plugins>
</build>
</profile>
<profile>
<id>java9</id>
<activation>
<jdk>9</jdk>
</activation>
<properties>
<!-- versions below 3.0.0 do not work with java 9 -->
<commons.javadoc.version>3.0.0-M1</commons.javadoc.version>
<!-- 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 8741715

Please sign in to comment.