Disable spotbugs & jacoco plugins on JDK17

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2021-07-22 07:45:13 -05:00
parent a37a3f31ca
commit 730921fcc5
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 11 additions and 0 deletions

11
pom.xml
View File

@ -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>