Skip to content

Commit 7cd31b1

Browse files
committed
Global jacoco
1 parent 67bf7ea commit 7cd31b1

File tree

2 files changed

+20
-23
lines changed

2 files changed

+20
-23
lines changed

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,25 @@
127127
<excludeFilterFile>spotbugs.xml</excludeFilterFile>
128128
</configuration>
129129
</plugin>
130+
<plugin>
131+
<groupId>org.jacoco</groupId>
132+
<artifactId>jacoco-maven-plugin</artifactId>
133+
<version>0.8.14</version>
134+
<executions>
135+
<execution>
136+
<goals>
137+
<goal>prepare-agent</goal>
138+
</goals>
139+
</execution>
140+
<execution>
141+
<id>report</id>
142+
<phase>test</phase>
143+
<goals>
144+
<goal>report</goal>
145+
</goals>
146+
</execution>
147+
</executions>
148+
</plugin>
130149
</plugins>
131150
<!-- Version fixes for enforcer -->
132151
<pluginManagement>

tlv/pom.xml

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,5 @@
3333
</dependency>
3434
</dependencies>
3535

36-
<build>
37-
<plugins>
38-
<plugin>
39-
<groupId>org.jacoco</groupId>
40-
<artifactId>jacoco-maven-plugin</artifactId>
41-
<version>0.8.14</version>
42-
<executions>
43-
<execution>
44-
<goals>
45-
<goal>prepare-agent</goal>
46-
</goals>
47-
</execution>
48-
<execution>
49-
<id>report</id>
50-
<phase>test</phase>
51-
<goals>
52-
<goal>report</goal>
53-
</goals>
54-
</execution>
55-
</executions>
56-
</plugin>
57-
</plugins>
58-
</build>
36+
5937
</project>

0 commit comments

Comments
 (0)