Skip to content

Commit

Permalink
Disable JaCoCo on Java 13+, because it does not support it yet.
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalSchumacher committed Jan 5, 2019
1 parent 21c7737 commit 2614a94
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -463,5 +463,15 @@
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
</profile>
<profile>
<id>java13+</id>
<activation>
<jdk>[13,)</jdk>
</activation>
<properties>
<!-- jacoco does not work with java 13 yet -->
<jacoco.skip>true</jacoco.skip>
</properties>
</profile>
</profiles>
</project>

0 comments on commit 2614a94

Please sign in to comment.