This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository nuiton-config. See https://gitlab.nuiton.org/nuiton/nuiton-config.git commit 08a4b74c780a33752ec2bb93574637e6f9211956 Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Sep 27 16:24:07 2019 +0200 Add Jacoco to get project coverage --- pom.xml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pom.xml b/pom.xml index e7a2b47..d815bd7 100644 --- a/pom.xml +++ b/pom.xml @@ -335,6 +335,29 @@ <build> + <plugins> + <!--For sonar code coverage--> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>0.8.4</version> + <executions> + <execution> + <id>default-prepare-agent</id> + <goals> + <goal>prepare-agent</goal> + </goals> + </execution> + <execution> + <id>default-report</id> + <goals> + <goal>report</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + <pluginManagement> <plugins> <plugin> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.