You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2021/05/31 12:31:19 UTC

[sling-jspc-maven-plugin] branch master updated: SLING-10439 - Ignore 'jspc' goal in Eclipse

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-jspc-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new c694c85  SLING-10439 - Ignore 'jspc' goal in Eclipse
c694c85 is described below

commit c694c8557768f761cb640b572b4e22fe886a97bb
Author: Rick Kellogg <rm...@users.noreply.github.com>
AuthorDate: Mon May 31 08:31:11 2021 -0400

    SLING-10439 - Ignore 'jspc' goal in Eclipse
    
    Added missing Eclipse M2Eclipse lifecycle-mapping-metadata.xml to prevent warning in Eclipse.
---
 .../META-INF/m2e/lifecycle-mapping-metadata.xml    | 30 ++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml b/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml
new file mode 100644
index 0000000..ee56e78
--- /dev/null
+++ b/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml
@@ -0,0 +1,30 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+   http://www.apache.org/licenses/LICENSE-2.0
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<lifecycleMappingMetadata>
+  <pluginExecutions>
+    <pluginExecution>
+      <pluginExecutionFilter>
+        <goals>
+          <goal>jspc</goal>
+        </goals>
+      </pluginExecutionFilter>
+      <action>
+        <ignore/>
+      </action>
+    </pluginExecution>
+  </pluginExecutions>
+</lifecycleMappingMetadata>
\ No newline at end of file