Skip to content

Commit

Permalink
Disable JaCoCo on Java 16+
Browse files Browse the repository at this point in the history
JaCoCo 0.8.5 does not support Java 16, see jacoco/jacoco#1059.
  • Loading branch information
scordio committed Aug 24, 2020
1 parent 334c2e6 commit 424805b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions pom.xml
Expand Up @@ -548,22 +548,23 @@
</build>
</profile>
<profile>
<id>java11+</id>
<id>java13+</id>
<activation>
<jdk>[11,)</jdk>
<jdk>[13,)</jdk>
</activation>
<properties>
<sonar.skip>false</sonar.skip>
<javadocAdditionalOptions>-html5 --allow-script-in-comments</javadocAdditionalOptions>
</properties>
</profile>
<profile>
<id>java13+</id>
<id>java16+</id>
<activation>
<jdk>[13,)</jdk>
<jdk>[16,)</jdk>
</activation>
<properties>
<javadocAdditionalOptions>-html5 --allow-script-in-comments</javadocAdditionalOptions>
<jacoco.skip>true</jacoco.skip> <!-- TODO to be removed once jacoco-maven-plugin 0.8.6 is available -->
</properties>
</profile>
</profiles>

</project>

0 comments on commit 424805b

Please sign in to comment.