Repository: empire-db Updated Branches: refs/heads/master c5e6a060e -> f0a4408bc
EMPIREDB-243 Add Eclipse m2e plugin lifecycle information. Project: http://git-wip-us.apache.org/repos/asf/empire-db/repo Commit: http://git-wip-us.apache.org/repos/asf/empire-db/commit/f0a4408b Tree: http://git-wip-us.apache.org/repos/asf/empire-db/tree/f0a4408b Diff: http://git-wip-us.apache.org/repos/asf/empire-db/diff/f0a4408b Branch: refs/heads/master Commit: f0a4408bc78428fa85a468347111d7b54c62ab0e Parents: c5e6a06 Author: doebele <[email protected]> Authored: Mon Jun 13 10:43:36 2016 +0200 Committer: doebele <[email protected]> Committed: Mon Jun 13 10:43:36 2016 +0200 ---------------------------------------------------------------------- pom.xml | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/empire-db/blob/f0a4408b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 75966e3..8b205ba 100644 --- a/pom.xml +++ b/pom.xml @@ -581,7 +581,62 @@ </systemPropertyVariables> </configuration> </plugin> - </plugins> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <!-- org.apache.felix:org.apache.felix --> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <versionRange>[1.0.0,)</versionRange> + <goals> + <goal>manifest</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + <!-- tycho-compiler-plugin --> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-compiler-plugin</artifactId> + <versionRange>[0.0,)</versionRange> + <goals> + <goal>compile</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + <!-- tycho-packaging-plugin --> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-packaging-plugin</artifactId> + <versionRange>[0.0,)</versionRange> + <goals> + <goal>build-qualifier</goal> + <goal>validate-id</goal> + <goal>validate-version</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> </pluginManagement> </build>
