travis: add java 9 to build (closes #27)
pom.xml: add java 9 profile to make build pass
This commit is contained in:
parent
b15deac11a
commit
87417154f2
|
@ -19,6 +19,7 @@ sudo: false
|
|||
jdk:
|
||||
- openjdk7
|
||||
- oraclejdk8
|
||||
- oraclejdk9
|
||||
|
||||
script:
|
||||
- mvn
|
||||
|
|
12
pom.xml
12
pom.xml
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue