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 2015/10/16 21:38:29 UTC

svn commit: r1709069 - /sling/trunk/tooling/maven/archetypes/parent/pom.xml

Author: rombert
Date: Fri Oct 16 19:38:28 2015
New Revision: 1709069

URL: http://svn.apache.org/viewvc?rev=1709069&view=rev
Log:
sling-archetype-parent: exclude goal.txt from rat check

Modified:
    sling/trunk/tooling/maven/archetypes/parent/pom.xml

Modified: sling/trunk/tooling/maven/archetypes/parent/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/maven/archetypes/parent/pom.xml?rev=1709069&r1=1709068&r2=1709069&view=diff
==============================================================================
--- sling/trunk/tooling/maven/archetypes/parent/pom.xml (original)
+++ sling/trunk/tooling/maven/archetypes/parent/pom.xml Fri Oct 16 19:38:28 2015
@@ -25,7 +25,6 @@
         <relativePath />
     </parent>
 
-    <groupId>org.apache.sling</groupId>
     <artifactId>sling-archetype-parent</artifactId>
     <packaging>pom</packaging>
     <version>4-SNAPSHOT</version>
@@ -99,6 +98,15 @@
                         <postBuildHookScript>verify.groovy</postBuildHookScript>
                     </configuration>
                 </plugin>
+                <plugin>
+                    <groupId>org.apache.rat</groupId>
+                    <artifactId>apache-rat-plugin</artifactId>
+                    <configuration>
+                        <excludes>
+                            <exclude>src/test/resources/projects/*/goal.txt</exclude>
+                        </excludes>
+                    </configuration>
+                </plugin>                
             </plugins>
         </pluginManagement>
     </build>