From 7f73fd76189d9779227495635384c4d49c4f9112 Mon Sep 17 00:00:00 2001
From: Konrad Windszus <konrad_w@gmx.de>
Date: Tue, 4 Jun 2024 08:52:36 +0200
Subject: [PATCH] Use default property for the jacoco agent

Always append jacoco execution reports because of multiple m-surefire-p
executions (which may all contribute to the coverage)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index eeae9dd8..ae4b69a7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -430,11 +430,11 @@ Bundle-DocURL: http://www.eclipse.org/sisu/
           <artifactId>jacoco-maven-plugin</artifactId>
           <version>0.8.12</version>
           <configuration>
-            <propertyName>jacoco.argLine</propertyName>
             <excludes>
               <exclude>**/asm/*</exclude>
               <exclude>Incomplete*</exclude>
             </excludes>
+            <append>true</append>
           </configuration>
           <executions>
             <execution>