Skip to content

Commit a306a1c

Browse files
committed
Update JaCoCo Version and Exclude JDK Classes
1 parent 61f70f8 commit a306a1c

File tree

1 file changed

+30
-23
lines changed

1 file changed

+30
-23
lines changed

liquidjava-verifier/pom.xml

Lines changed: 30 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -95,29 +95,36 @@
9595
<version>3.2.1</version>
9696
</plugin>
9797

98-
<!-- JaCoCo Coverage Plugin -->
99-
<plugin>
100-
<groupId>org.jacoco</groupId>
101-
<artifactId>jacoco-maven-plugin</artifactId>
102-
<version>0.8.11</version>
103-
<executions>
104-
<execution>
105-
<id>prepare-agent</id>
106-
<goals>
107-
<goal>prepare-agent</goal>
108-
</goals>
109-
</execution>
110-
<execution>
111-
<id>report</id>
112-
<phase>test</phase>
113-
<goals>
114-
<goal>report</goal>
115-
</goals>
116-
</execution>
117-
</executions>
118-
</plugin>
119-
120-
<plugin>
98+
<!-- JaCoCo Coverage Plugin -->
99+
<plugin>
100+
<groupId>org.jacoco</groupId>
101+
<artifactId>jacoco-maven-plugin</artifactId>
102+
<version>0.8.12</version>
103+
<executions>
104+
<execution>
105+
<id>prepare-agent</id>
106+
<goals>
107+
<goal>prepare-agent</goal>
108+
</goals>
109+
<configuration>
110+
<excludes>
111+
<exclude>java.*</exclude>
112+
<exclude>javax.*</exclude>
113+
<exclude>sun.*</exclude>
114+
<exclude>jdk.*</exclude>
115+
<exclude>com.sun.*</exclude>
116+
</excludes>
117+
</configuration>
118+
</execution>
119+
<execution>
120+
<id>report</id>
121+
<phase>test</phase>
122+
<goals>
123+
<goal>report</goal>
124+
</goals>
125+
</execution>
126+
</executions>
127+
</plugin> <plugin>
121128
<groupId>org.antlr</groupId>
122129
<artifactId>antlr4-maven-plugin</artifactId>
123130
<version>4.7.1</version>

0 commit comments

Comments
 (0)