Repository: cxf Updated Branches: refs/heads/master 721713251 -> f32709f86
Add some lifecycle mapping so SOME things my actually work within m2e Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/f32709f8 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/f32709f8 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/f32709f8 Branch: refs/heads/master Commit: f32709f86d7f1aefb23a60c705d6d658d7b958e2 Parents: 7217132 Author: Daniel Kulp <[email protected]> Authored: Fri Apr 11 16:19:07 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Fri Apr 11 16:19:07 2014 -0400 ---------------------------------------------------------------------- parent/pom.xml | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/f32709f8/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index 602ff99..9ec4b78 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -420,6 +420,59 @@ </archive> </configuration> </plugin> + <!-- Eclipse m2e Lifecycle Management --> + <plugin> + <artifactId>lifecycle-mapping</artifactId> + <groupId>org.eclipse.m2e</groupId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <versionRange>[2,4)</versionRange> + <goals> + <goal>cleanVersions</goal> + <goal>package</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-remote-resources-plugin</artifactId> + <versionRange>[1,4)</versionRange> + <goals> + <goal>process</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.codehaus.mojo</groupId> + <artifactId>buildnumber-maven-plugin</artifactId> + <versionRange>[1,4)</versionRange> + <goals> + <goal>create-timestamp</goal> + <goal>create</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> </plugins> </pluginManagement> <plugins>
