You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2014/02/17 21:08:03 UTC

git commit: Keep m2eclipse about complaining about RAT

Repository: maven
Updated Branches:
  refs/heads/master 0afed871f -> c8acb7a38


Keep m2eclipse about complaining about RAT


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/c8acb7a3
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/c8acb7a3
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/c8acb7a3

Branch: refs/heads/master
Commit: c8acb7a382537d8ce95237d9d16bfefd48c7afe6
Parents: 0afed87
Author: Jason van Zyl <ja...@tesla.io>
Authored: Mon Feb 17 12:07:38 2014 -0800
Committer: Jason van Zyl <ja...@tesla.io>
Committed: Mon Feb 17 12:07:38 2014 -0800

----------------------------------------------------------------------
 pom.xml | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/c8acb7a3/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 45fd0b9..d17d1ea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -468,6 +468,31 @@
             </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.apache.rat</groupId>
+                    <artifactId>apache-rat-plugin</artifactId>
+                    <versionRange>[0.10,)</versionRange>
+                    <goals>
+                      <goal>check</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore></ignore>
+                  </action>
+                </pluginExecution>
+              </pluginExecutions>
+            </lifecycleMappingMetadata>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>