diff --git a/borestop/pom.xml b/borestop/pom.xml
index b58010cf5f6cedbf0681e3222ebdf8a7598aea30..9c7972c62978be506e5646f7cbc39fdf041bc086 100644
--- a/borestop/pom.xml
+++ b/borestop/pom.xml
@@ -546,6 +546,36 @@
                 <outputDirectory>${jacoco.itReportFolder}</outputDirectory>
               </configuration>
             </execution>
+            <execution>
+              <id>merge</id>
+              <phase>verify</phase>
+              <goals>
+                <goal>merge</goal>
+              </goals>
+              <configuration>
+                <fileSets>
+                  <fileSet
+                    implementation="org.apache.maven.shared.model.fileset.FileSet">
+                    <directory>${project.basedir}</directory>
+                    <includes>
+                      <include>**/*.exec</include>
+                    </includes>
+                  </fileSet>
+                </fileSets>
+                <destFile>${project.build.directory}/coverage-reports/aggregate.exec</destFile>
+              </configuration>
+            </execution>
+            <execution>
+              <id>post-merge-report</id>
+              <phase>verify</phase>
+              <goals>
+                <goal>report</goal>
+              </goals>
+              <configuration>
+                <dataFile>${project.build.directory}/coverage-reports/aggregate.exec</dataFile>
+                <outputDirectory>${project.build.directory}/jacoco-aggregate</outputDirectory>
+              </configuration>
+            </execution>
           </executions>
         </plugin>
         <plugin>
@@ -796,8 +826,6 @@
           <configuration>
             <mainClass>${start-class}</mainClass>
             <fork>true</fork>
-            <!-- Enable the line below to have remote debugging of your application 
-              on port 5005 <jvmArguments>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005</jvmArguments> -->
           </configuration>
 
         </plugin>