Skip to content

Commit

Permalink
fix jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
kwin committed Sep 27, 2023
1 parent 4f3f320 commit 6cabe92
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
13 changes: 12 additions & 1 deletion accesscontroltool-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,18 @@
<skip>false</skip><!-- only enable in specific submodules -->
<suppressionFile>${project.basedir}/suppression.xml</suppressionFile>
</configuration>
</plugin>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<!-- Exclude multi-version snakeyaml for Jacoco due to https://github.com/jacoco/jacoco/issues/407 -->
<exclude>snakeyaml-2.0.jar</exclude>
<exclude>tomcat-*.jar</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,11 @@
<skip>true</skip><!-- only enable in specific submodules -->
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -671,7 +676,6 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down

0 comments on commit 6cabe92

Please sign in to comment.