Updated Branches: refs/heads/master 374aa4112 -> d1bc54fc8
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/d1bc54fc Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/d1bc54fc Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/d1bc54fc Branch: refs/heads/master Commit: d1bc54fc849e4321c983aee1e728c1e8d59d98c2 Parents: 374aa41 Author: Chiradeep Vittal <[email protected]> Authored: Wed Sep 26 14:53:53 2012 -0700 Committer: Chiradeep Vittal <[email protected]> Committed: Wed Sep 26 14:54:22 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/d1bc54fc/awsapi/pom.xml ---------------------------------------------------------------------- diff --git a/awsapi/pom.xml b/awsapi/pom.xml index 66cf974..9654c2e 100644 --- a/awsapi/pom.xml +++ b/awsapi/pom.xml @@ -298,5 +298,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/d1bc54fc/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>
