You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pom.xml
+65Lines changed: 65 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3436,6 +3436,71 @@
3436
3436
</execution>
3437
3437
</executions>
3438
3438
</plugin>
3439
+
<plugin>
3440
+
<groupId>org.jacoco</groupId>
3441
+
<artifactId>jacoco-maven-plugin</artifactId>
3442
+
<skipIfTrue>
3443
+
<property>skip</property>
3444
+
</skipIfTrue>
3445
+
<executions>
3446
+
<execution>
3447
+
<id>jacoco-report</id>
3448
+
<inputs>
3449
+
<properties>
3450
+
<property>
3451
+
<name>dataFileExcludes</name>
3452
+
</property>
3453
+
<property>
3454
+
<name>dataFileExcludes</name>
3455
+
</property>
3456
+
<property>
3457
+
<name>dataFileIncludes</name>
3458
+
</property>
3459
+
<property>
3460
+
<name>excludes</name>
3461
+
</property>
3462
+
<property>
3463
+
<name>footer</name>
3464
+
</property>
3465
+
<property>
3466
+
<name>includeCurrentProject</name>
3467
+
</property>
3468
+
<property>
3469
+
<name>includes</name>
3470
+
</property>
3471
+
<property>
3472
+
<name>outputEncoding</name>
3473
+
</property>
3474
+
<property>
3475
+
<name>sourceEncoding</name>
3476
+
</property>
3477
+
<property>
3478
+
<name>title</name>
3479
+
</property>
3480
+
</properties>
3481
+
<ignoredProperties>
3482
+
<ignore>project</ignore>
3483
+
<ignore>reactorProjects</ignore>
3484
+
<!--
3485
+
we should not be ignoring this since formats changes the content of the output
3486
+
but it contains a list of enum see https://github.com/jacoco/jacoco/blob/562a7299399b8321dfcf8eeb21ea4bfc27556fdc/jacoco-maven-plugin/src/org/jacoco/maven/AbstractReportMojo.java
3487
+
and that's not storable in the cache key
3488
+
no sure how this should be handled ?
3489
+
-->
3490
+
<ignore>formats</ignore>
3491
+
</ignoredProperties>
3492
+
</inputs>
3493
+
<outputs>
3494
+
<cacheableBecause>Test coverage reports depend on test execution and don't affect final build product.</cacheableBecause>
0 commit comments