Skip to content

Commit

Permalink
Add coveralls skip=true because the coveralls 4.3.0 or previous versi…
Browse files Browse the repository at this point in the history
…on does not work on Java 9 terasolunaorg#773
  • Loading branch information
kazuki43zoo committed Oct 28, 2017
1 parent 5ab7b48 commit 472b30a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -218,5 +218,15 @@
</pluginManagement>
</build>
</profile>
<profile>
<id>jdk9</id>
<activation>
<jdk>9</jdk>
</activation>
<properties>
<!-- coverall version 4.3.0 or previous version does not work on Java 9, see https://github.com/trautonen/coveralls-maven-plugin/issues/112 -->
<coveralls.skip>true</coveralls.skip>
</properties>
</profile>
</profiles>
</project>
4 changes: 4 additions & 0 deletions terasoluna-gfw-common-libraries/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@
<activation>
<jdk>9</jdk>
</activation>
<properties>
<!-- coverall version 4.3.0 or previous version does not work on Java 9, see https://github.com/trautonen/coveralls-maven-plugin/issues/112 -->
<coveralls.skip>true</coveralls.skip>
</properties>
<build>
<pluginManagement>
<plugins>
Expand Down

0 comments on commit 472b30a

Please sign in to comment.