You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2016/01/15 06:10:29 UTC

[17/30] maven-surefire git commit: [SUREFIRE] added Jacoco

[SUREFIRE] added Jacoco


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/7466f098
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/7466f098
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/7466f098

Branch: refs/heads/3.0-rc1
Commit: 7466f09853d64721a2e81225f2382266d1d500a9
Parents: 9875d2a
Author: Tibor17 <ti...@lycos.com>
Authored: Wed Jan 13 02:44:51 2016 +0100
Committer: Tibor17 <ti...@lycos.com>
Committed: Wed Jan 13 02:44:51 2016 +0100

----------------------------------------------------------------------
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/7466f098/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b411225..ebb69de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -295,6 +295,7 @@
           <configuration>
             <!-- NOTE: Be sure to isolate the Surefire version under test from the version running the tests! -->
             <useSystemClassLoader>false</useSystemClassLoader>
+            <argLine>${surefireArgLine}</argLine>
           </configuration>
         </plugin>
         <plugin>
@@ -315,6 +316,14 @@
             <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.jacoco</groupId>
+          <artifactId>jacoco-maven-plugin</artifactId>
+          <version>0.7.5.201505241946</version>
+          <configuration>
+            <propertyName>surefireArgLine</propertyName>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>