You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by st...@apache.org on 2016/04/18 14:51:51 UTC

svn commit: r1739755 - /commons/proper/commons-build-plugin/trunk/pom.xml

Author: stain
Date: Mon Apr 18 12:51:51 2016
New Revision: 1739755

URL: http://svn.apache.org/viewvc?rev=1739755&view=rev
Log:
Don't rat-check download page templates

Modified:
    commons/proper/commons-build-plugin/trunk/pom.xml

Modified: commons/proper/commons-build-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-build-plugin/trunk/pom.xml?rev=1739755&r1=1739754&r2=1739755&view=diff
==============================================================================
--- commons/proper/commons-build-plugin/trunk/pom.xml (original)
+++ commons/proper/commons-build-plugin/trunk/pom.xml Mon Apr 18 12:51:51 2016
@@ -121,7 +121,6 @@
                         </configuration>
                     </execution>
                 </executions>
-
             </plugin>
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
@@ -132,6 +131,18 @@
                     <tarLongFileMode>gnu</tarLongFileMode>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <useDefaultExcludes>true</useDefaultExcludes>
+                    <excludes>
+                        <!-- template files which will be inserted into the middle of resulting page -->
+                        <exclude>src/main/resources/commons-xdoc-templates/download-page-body.xml</exclude>
+                        <exclude>src/main/resources/commons-xdoc-templates/download-page-foot.xml</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     <reporting>