Skip to content

Commit cb5ba54

Browse files
committed
Add JaCoCo coverage update
1 parent 79253ed commit cb5ba54

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

payment-service-paypal/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,26 @@
6161
<artifactId>jacoco-maven-plugin</artifactId>
6262
<version>0.8.10</version>
6363
<executions>
64+
<!-- Prepares the agent for coverage -->
6465
<execution>
66+
<id>prepare-agent</id>
6567
<goals>
6668
<goal>prepare-agent</goal>
6769
</goals>
6870
</execution>
71+
72+
<!-- Generates the report after tests -->
6973
<execution>
7074
<id>report</id>
71-
<phase>prepare-package</phase>
75+
<phase>verify</phase>
7276
<goals>
7377
<goal>report</goal>
7478
</goals>
7579
</execution>
7680
</executions>
7781
</plugin>
78-
82+
83+
7984
</plugins>
8085
</build>
8186

0 commit comments

Comments
 (0)