Skip Jacoco and SpotBugs on Java 13+.
This commit is contained in:
parent
9fd7ad2d5b
commit
f810c82837
12
pom.xml
12
pom.xml
|
@ -904,6 +904,18 @@
|
|||
<coveralls.skip>true</coveralls.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>
|
||||
<!-- spotbugs does not work on java 13 yet, "java.lang.IllegalArgumentException: Unsupported class file major version 57" -->
|
||||
<spotbugs.skip>true</spotbugs.skip>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>benchmark</id>
|
||||
|
|
Loading…
Reference in New Issue