This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit c4d16f105366a7e5a18bbfbde56ab3f7654c44ef Author: jcouteau <couteau@codelutin.com> Date: Mon Sep 23 13:58:27 2019 +0200 Code coverage is back ! --- pom.xml | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 39ef53b7..ab3fb99e 100644 --- a/pom.xml +++ b/pom.xml @@ -111,7 +111,7 @@ <h2Version>1.3.176</h2Version> <guavaVersion>18.0</guavaVersion> - <jaxxVersion>2.43</jaxxVersion> + <jaxxVersion>2.44-SNAPSHOT</jaxxVersion> <!-- do not upgrade to 1.6.5-1 --> <swingXVersion>1.6.4</swingXVersion> <xworkVersion>2.3.16.3</xworkVersion> @@ -146,6 +146,9 @@ <!-- issues status to include in changelog --> <!--<redmine.statusIds>18,19,3,10,11</redmine.statusIds>--> + <!-- Tell sonar where to look for the coverage file. Property inherited by submodules --> + <sonar.jacoco.reportPath>${project.basedir}/../target/jacoco.exec</sonar.jacoco.reportPath> + </properties> <repositories> @@ -879,7 +882,7 @@ <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> - <version>0.7.9</version> + <version>0.8.4</version> <executions> <execution> <id>default-prepare-agent</id> @@ -889,11 +892,26 @@ </execution> <execution> <id>default-report</id> - <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> + <execution> + <id>merge</id> + <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> + </configuration> + </execution> </executions> </plugin> </plugins> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.