This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch code-coverage
in repository https://gitbox.apache.org/repos/asf/maven-doxia-converter.git

commit 85fcfd93bb8989821d800511aae36b8eac7206b9
Author: Sylwester Lachiewicz <slachiew...@apache.org>
AuthorDate: Sat Nov 2 21:15:38 2019 +0100

    Add Code Coverage - jacoco-maven-plugin
---
 pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/pom.xml b/pom.xml
index 3aea09f..10cb84d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -212,6 +212,25 @@ under the License.
           </execution>
         </executions>
       </plugin>
+      <plugin>
+          <groupId>org.jacoco</groupId>
+          <artifactId>jacoco-maven-plugin</artifactId>
+          <version>0.8.5</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>prepare-agent</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>report</id>
+            <phase>prepare-package</phase>
+            <goals>
+              <goal>report</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
 </project>
\ No newline at end of file

Reply via email to