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>
|
||||
</build>
|
||||
</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>
|
||||
<id>update-version</id>
|
||||
<build>
|
||||
|
|
Loading…
Reference in New Issue