You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ta...@apache.org on 2014/10/02 17:51:02 UTC

[2/2] git commit: Add m2e hint to ignore jacoco-maven-plugin

Add m2e hint to ignore jacoco-maven-plugin

Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/51da0e5a
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/51da0e5a
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/51da0e5a

Branch: refs/heads/master
Commit: 51da0e5acf85ae9a96ec1ee2f9886400f4a8da09
Parents: 90490f1
Author: Timothy Bish <ta...@gmail.com>
Authored: Thu Oct 2 11:50:43 2014 -0400
Committer: Timothy Bish <ta...@gmail.com>
Committed: Thu Oct 2 11:50:43 2014 -0400

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


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/51da0e5a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 474456e..867f51d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -234,6 +234,31 @@
           <artifactId>jacoco-maven-plugin</artifactId>
           <version>${jacoco-plugin-version}</version>
         </plugin>
+        <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
+        <plugin>
+          <groupId>org.eclipse.m2e</groupId>
+          <artifactId>lifecycle-mapping</artifactId>
+          <version>1.0.0</version>
+          <configuration>
+            <lifecycleMappingMetadata>
+              <pluginExecutions>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.jacoco</groupId>
+                    <artifactId>jacoco-maven-plugin</artifactId>
+                    <versionRange>[0.7.2.*,)</versionRange>
+                    <goals>
+                      <goal>prepare-agent</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore></ignore>
+                  </action>
+                </pluginExecution>
+              </pluginExecutions>
+            </lifecycleMappingMetadata>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org