From b23e2ec58c5fd90b3f9379781622799105a42d60 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Wed, 7 Sep 2016 16:02:10 -0400 Subject: [PATCH] adding sonar integration for code coverage --- pom.xml | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/pom.xml b/pom.xml index b517a342..9af76830 100644 --- a/pom.xml +++ b/pom.xml @@ -105,5 +105,47 @@ + + sonar + + + + org.jacoco + jacoco-maven-plugin + + + pre-unit-test + + prepare-agent + + + surefireArgLine + ${project.build.directory}/jacoco.exec + + + + post-unit-test + test + + report + + + + ${project.build.directory}/jacoco.exec + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${surefireArgLine} + + + + +