You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by en...@apache.org on 2022/07/06 21:57:39 UTC

[sling-org-apache-sling-repoinit-parser] branch master updated: ignore Eclipse m2e warning about javacc-maven-plugin

This is an automated email from the ASF dual-hosted git repository.

enorman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-repoinit-parser.git


The following commit(s) were added to refs/heads/master by this push:
     new a578e25  ignore Eclipse m2e warning about javacc-maven-plugin
a578e25 is described below

commit a578e253b1a86622321fba9cef49b8d0cd18a7f4
Author: Eric Norman <en...@apache.org>
AuthorDate: Wed Jul 6 14:57:30 2022 -0700

    ignore Eclipse m2e warning about javacc-maven-plugin
---
 pom.xml | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/pom.xml b/pom.xml
index 5741e0d..94044fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -85,6 +85,37 @@
                 </configuration>
             </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.codehaus.mojo</groupId>
+                                    <artifactId>
+                                        javacc-maven-plugin
+                                    </artifactId>
+                                    <versionRange>[2.5,)</versionRange>
+                                    <goals>
+                                        <goal>jjtree-javacc</goal>
+                                    </goals>
+                                </pluginExecutionFilter>
+                                <action>
+                                    <ignore></ignore>
+                                </action>
+                            </pluginExecution>
+                        </pluginExecutions>
+                    </lifecycleMappingMetadata>
+                </configuration>
+            </plugin>
+        </plugins>
+    </pluginManagement>
   </build>
 
     <dependencies>