Skip to content

Commit

Permalink
workaround coveralls fail on java 9
Browse files Browse the repository at this point in the history
See also WW-4845
  • Loading branch information
yasserzamani committed Nov 11, 2018
1 parent e0c1ede commit 16d6d21
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,6 @@
<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>
<build>
<pluginManagement>
<plugins>
Expand Down Expand Up @@ -204,6 +200,15 @@
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<!-- TODO delete following dependency after fix of https://github.com/trautonen/coveralls-maven-plugin/issues/112 -->
<!-- coverall version 4.3.0 does not work with java 9 without following dependency -->
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 16d6d21

Please sign in to comment.