You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2015/07/10 19:42:17 UTC

activemq-cpp git commit: Add m2e settings to ingore in eclipse.

Repository: activemq-cpp
Updated Branches:
  refs/heads/master 9a656c844 -> 99686bc07


Add m2e settings to ingore in eclipse.

Project: http://git-wip-us.apache.org/repos/asf/activemq-cpp/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-cpp/commit/99686bc0
Tree: http://git-wip-us.apache.org/repos/asf/activemq-cpp/tree/99686bc0
Diff: http://git-wip-us.apache.org/repos/asf/activemq-cpp/diff/99686bc0

Branch: refs/heads/master
Commit: 99686bc07c16e157a5cf84f496fd53fc981af8e7
Parents: 9a656c8
Author: Timothy Bish <ta...@gmail.com>
Authored: Fri Jul 10 13:42:08 2015 -0400
Committer: Timothy Bish <ta...@gmail.com>
Committed: Fri Jul 10 13:42:08 2015 -0400

----------------------------------------------------------------------
 maven-cpptools-plugin/pom.xml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-cpp/blob/99686bc0/maven-cpptools-plugin/pom.xml
----------------------------------------------------------------------
diff --git a/maven-cpptools-plugin/pom.xml b/maven-cpptools-plugin/pom.xml
index e113321..3db6aca 100644
--- a/maven-cpptools-plugin/pom.xml
+++ b/maven-cpptools-plugin/pom.xml
@@ -87,6 +87,35 @@
         <artifactId>maven-eclipse-plugin</artifactId>
       </plugin>
     </plugins>
+    <pluginManagement>
+      <plugins>
+        <!--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.apache.maven.plugins</groupId>
+                    <artifactId>maven-plugin-plugin</artifactId>
+                    <versionRange>[3.3,)</versionRange>
+                    <goals>
+                      <goal>descriptor</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore></ignore>
+                  </action>
+                </pluginExecution>
+              </pluginExecutions>
+            </lifecycleMappingMetadata>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 
 </project>