This commit is contained in:
Gary Gregory 2017-10-20 17:27:45 -06:00
commit 1521cc285d
2 changed files with 17 additions and 0 deletions

View File

@ -22,6 +22,7 @@ script:
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
after_success:
- mvn -B -V -Ptravis-jacoco clean test jacoco:report coveralls:report

16
pom.xml
View File

@ -152,6 +152,9 @@ CSV files of various types.
<checkstyle.version>2.17</checkstyle.version>
<checkstyle.header.file>${basedir}/LICENSE-header.txt</checkstyle.header.file>
<checkstyle.resourceExcludes>LICENSE.txt, NOTICE.txt</checkstyle.resourceExcludes>
<!-- Override jacoco version for java 9 compatibility -->
<commons.jacoco.version>0.7.9</commons.jacoco.version>
</properties>
<build>
@ -512,6 +515,19 @@ CSV files of various types.
</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>