You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2018/08/20 15:06:26 UTC

[3/6] brooklyn-ui git commit: pom IDE eclipse instruction to ignore goals it doesn't support

pom IDE eclipse instruction to ignore goals it doesn't support


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/commit/300b0147
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/tree/300b0147
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/diff/300b0147

Branch: refs/heads/master
Commit: 300b014771b396b260fc44bdf328f12c4388ee11
Parents: efefc3f
Author: Alex Heneveld <al...@cloudsoftcorp.com>
Authored: Mon Aug 13 13:26:52 2018 +0100
Committer: Alex Heneveld <al...@cloudsoftcorp.com>
Committed: Mon Aug 13 13:26:52 2018 +0100

----------------------------------------------------------------------
 modularity-server/features/pom.xml | 30 ++++++++++++++++++++++++++++++
 pom.xml                            | 27 +++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-ui/blob/300b0147/modularity-server/features/pom.xml
----------------------------------------------------------------------
diff --git a/modularity-server/features/pom.xml b/modularity-server/features/pom.xml
index 53733c6..bd6bac0 100644
--- a/modularity-server/features/pom.xml
+++ b/modularity-server/features/pom.xml
@@ -162,5 +162,35 @@
                 </executions>
             </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.2,)</versionRange>
+                        <goals>
+                          <goal>verify</goal>
+                          <goal>features-generate-descriptor</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                  </pluginExecutions>
+                </lifecycleMappingMetadata>
+              </configuration>
+            </plugin>
+          </plugins>
+        </pluginManagement>
     </build>
 </project>

http://git-wip-us.apache.org/repos/asf/brooklyn-ui/blob/300b0147/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 257fbfa..3222258 100644
--- a/pom.xml
+++ b/pom.xml
@@ -215,6 +215,33 @@
                         </execution>
                     </executions>
                 </plugin>
+
+             <!--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.codehaus.mojo</groupId>
+                        <artifactId>flatten-maven-plugin</artifactId>
+                        <versionRange>[1.0.1,)</versionRange>
+                        <goals>
+                          <goal>flatten</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                  </pluginExecutions>
+                </lifecycleMappingMetadata>
+              </configuration>
+             </plugin>
+
             </plugins>
         </pluginManagement>
         <plugins>