You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2020/01/30 13:40:09 UTC

[isis] branch master updated: ISIS-2223: add jacoco maven plugin (should enable code coverage reports)

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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 67edd07  ISIS-2223: add jacoco maven plugin (should enable code coverage reports)
67edd07 is described below

commit 67edd07161e221b497f4199074f6d2f1521d7f24
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Jan 30 14:39:58 2020 +0100

    ISIS-2223: add jacoco maven plugin (should enable code coverage reports)
---
 core-parent/pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/core-parent/pom.xml b/core-parent/pom.xml
index 26d544a..4a3d36b 100644
--- a/core-parent/pom.xml
+++ b/core-parent/pom.xml
@@ -676,6 +676,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>