Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2018-12-05 13:37:59 +0000
committerMatthias Sohn2018-12-22 01:43:07 +0000
commit9e5c7c5358bac3dc0890cf00848704dad47ad1ba (patch)
tree0a619d80df2149e2005e2b06cb0773c3ebbe53bb /org.eclipse.jgit.lfs.server.test
parentccc21c7d4abf3ec893591b1348cfb5e7932c9d6a (diff)
downloadjgit-9e5c7c5358bac3dc0890cf00848704dad47ad1ba.tar.gz
jgit-9e5c7c5358bac3dc0890cf00848704dad47ad1ba.tar.xz
jgit-9e5c7c5358bac3dc0890cf00848704dad47ad1ba.zip
Capture test coverage and add an aggregate test coverage report
Configure Maven build to capture test coverage using jacoco. Add new org.eclipse.jgit.coverage Maven module to aggregate jacoco test coverage results and generate test coverage HTML report at org.eclipse.jgit.coverage/target/site/jacoco-aggregate/index.html See https://www.eclemma.org/jacoco/trunk/doc/maven.html Change-Id: Iaeec4033e448ebc16965c05ab54109c4155a307a Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.lfs.server.test')
-rw-r--r--org.eclipse.jgit.lfs.server.test/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.lfs.server.test/pom.xml b/org.eclipse.jgit.lfs.server.test/pom.xml
index 65f759485d..f8a4695cc5 100644
--- a/org.eclipse.jgit.lfs.server.test/pom.xml
+++ b/org.eclipse.jgit.lfs.server.test/pom.xml
@@ -137,7 +137,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>-Djava.io.tmpdir=${project.build.directory} -Xmx300m</argLine>
+ <argLine>@{argLine} -Djava.io.tmpdir=${project.build.directory} -Xmx300m</argLine>
</configuration>
</plugin>
</plugins>

Back to the top