Repository: incubator-brooklyn Updated Branches: refs/heads/master aef4da8a0 -> 86dbfbf49
Ignore testCompile phase in Eclipse so the Groovy plugin is not required Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/56a9eb8b Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/56a9eb8b Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/56a9eb8b Branch: refs/heads/master Commit: 56a9eb8b76f0e8c67169fe4c2372e0486aba5f8f Parents: 25e1c31 Author: Svetoslav Neykov <[email protected]> Authored: Mon Oct 26 16:11:57 2015 +0200 Committer: Svetoslav Neykov <[email protected]> Committed: Mon Oct 26 16:45:52 2015 +0200 ---------------------------------------------------------------------- core/pom.xml | 29 +++++++++++++++++++++++++++++ usage/downstream-parent/pom.xml | 1 + 2 files changed, 30 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/56a9eb8b/core/pom.xml ---------------------------------------------------------------------- diff --git a/core/pom.xml b/core/pom.xml index 1a0e04b..af3d7b1 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -265,5 +265,34 @@ </dependencies> </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.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <versionRange>[3.3,)</versionRange> + <goals> + <goal>testCompile</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </project> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/56a9eb8b/usage/downstream-parent/pom.xml ---------------------------------------------------------------------- diff --git a/usage/downstream-parent/pom.xml b/usage/downstream-parent/pom.xml index 974f367..be889de 100644 --- a/usage/downstream-parent/pom.xml +++ b/usage/downstream-parent/pom.xml @@ -62,6 +62,7 @@ <jersey.version>1.18.1</jersey.version> <httpclient.version>4.4.1</httpclient.version> <commons-lang3.version>3.1</commons-lang3.version> + <groovy.version>2.3.4</groovy.version> <!-- Version supported by https://github.com/groovy/groovy-eclipse/wiki/Groovy-Eclipse-2.9.0-Release-Notes --> <jsr305.version>2.0.1</jsr305.version> <snakeyaml.version>1.11</snakeyaml.version> </properties>
