Repository: brooklyn-server Updated Branches: refs/heads/master 2c3e33b84 -> 2fea6d1ba
update pom to avoid eclipse error with unknown phase "verify" Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/2fea6d1b Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/2fea6d1b Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/2fea6d1b Branch: refs/heads/master Commit: 2fea6d1baca934f84e6474c28b1e43a6a9282d49 Parents: 2c3e33b Author: Alex Heneveld <[email protected]> Authored: Tue Aug 29 12:39:14 2017 +0100 Committer: Alex Heneveld <[email protected]> Committed: Tue Aug 29 12:39:14 2017 +0100 ---------------------------------------------------------------------- karaf/features/pom.xml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/2fea6d1b/karaf/features/pom.xml ---------------------------------------------------------------------- diff --git a/karaf/features/pom.xml b/karaf/features/pom.xml index 185be98..3099920 100755 --- a/karaf/features/pom.xml +++ b/karaf/features/pom.xml @@ -40,6 +40,35 @@ <extensions>true</extensions> </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.karaf.tooling</groupId> + <artifactId>karaf-maven-plugin</artifactId> + <versionRange>[4.1.1,)</versionRange> + <goals> + <goal>verify</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </project>
