Disable spotbugs & jacoco plugins on JDK17
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
parent
a37a3f31ca
commit
730921fcc5
11
pom.xml
11
pom.xml
|
@ -1465,6 +1465,17 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>jdk17</id>
|
||||||
|
<activation>
|
||||||
|
<jdk>[1.7,)</jdk>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<!-- disable plugins known not to work with JDK 17 (yet) -->
|
||||||
|
<spotbugs.skip>true</spotbugs.skip>
|
||||||
|
<jacoco.skip>true</jacoco.skip>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>update-version</id>
|
<id>update-version</id>
|
||||||
<build>
|
<build>
|
||||||
|
|
Loading…
Reference in New Issue