You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ed...@apache.org on 2012/09/27 06:58:03 UTC

[16/33] git commit: Avoid m2e complaining about unsupported plugins (according to http://s.apache.org/lZ0)

Avoid m2e complaining about unsupported plugins (according to http://s.apache.org/lZ0)


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/0167c34b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/0167c34b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/0167c34b

Branch: refs/heads/4.0
Commit: 0167c34bdad07ec97c987ffa444b03cd875deb34
Parents: e2dbc28
Author: Chiradeep Vittal <ch...@apache.org>
Authored: Wed Sep 26 14:53:53 2012 -0700
Committer: Edison Su <di...@gmail.com>
Committed: Wed Sep 26 21:38:52 2012 -0700

----------------------------------------------------------------------
 awsapi/pom.xml |   45 +++++++++++++++++++++++++++++++++++++++++++++
 deps/pom.xml   |   13 +++++++++++++
 2 files changed, 58 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/0167c34b/awsapi/pom.xml
----------------------------------------------------------------------
diff --git a/awsapi/pom.xml b/awsapi/pom.xml
index a583384..8c75978 100644
--- a/awsapi/pom.xml
+++ b/awsapi/pom.xml
@@ -272,5 +272,50 @@
          </plugin>
         </plugins>
     -->
+    <pluginManagement>
+      <plugins>
+        <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-antrun-plugin
+                    </artifactId>
+                    <versionRange>[1.7,)</versionRange>
+                    <goals>
+                      <goal>run</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore></ignore>
+                  </action>
+                </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-dependency-plugin</artifactId>
+                    <versionRange>[2.0,)</versionRange>
+                    <goals>
+                      <goal>copy-dependencies</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <execute />
+                  </action>
+                </pluginExecution>
+              </pluginExecutions>
+            </lifecycleMappingMetadata>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/0167c34b/deps/pom.xml
----------------------------------------------------------------------
diff --git a/deps/pom.xml b/deps/pom.xml
index 1e20083..ffc0e75 100644
--- a/deps/pom.xml
+++ b/deps/pom.xml
@@ -179,6 +179,19 @@
                     <ignore></ignore>
                   </action>
                 </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-dependency-plugin</artifactId>
+                    <versionRange>[2.0,)</versionRange>
+                    <goals>
+                      <goal>copy-dependencies</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <execute />
+                  </action>
+                </pluginExecution>
               </pluginExecutions>
             </lifecycleMappingMetadata>
           </configuration>