You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by al...@apache.org on 2018/07/11 17:34:16 UTC

svn commit: r1835646 - /aries/trunk/parent/pom.xml

Author: alien11689
Date: Wed Jul 11 17:34:15 2018
New Revision: 1835646

URL: http://svn.apache.org/viewvc?rev=1835646&view=rev
Log:
[ARIES-1809] Run rat plugin by default

Modified:
    aries/trunk/parent/pom.xml

Modified: aries/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/parent/pom.xml?rev=1835646&r1=1835645&r2=1835646&view=diff
==============================================================================
--- aries/trunk/parent/pom.xml (original)
+++ aries/trunk/parent/pom.xml Wed Jul 11 17:34:15 2018
@@ -606,12 +606,15 @@
         </profile>
         <profile>
             <id>rat</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
             <build>
                 <plugins>
                     <plugin>
                         <groupId>org.apache.rat</groupId>
                         <artifactId>apache-rat-plugin</artifactId>
-                        <version>0.6</version>
+                        <version>0.12</version>
                         <executions>
                             <execution>
                                 <phase>verify</phase>
@@ -637,15 +640,21 @@
                                 <!-- exclude Eclipse IDE generated files -->
                                 <exclude>**/.project</exclude>
                                 <exclude>**/.classpath</exclude>
+                                <exclude>**/.settings/**</exclude>
                                 <exclude>**/eclipse-classes/**/*</exclude>
                                 <!-- manifest files don't support comments so don't contain the ASL2.0 header -->
-                                <exclude>**/APPLICATION.MF</exclude>
-                                <exclude>**/MANIFEST.MF</exclude>
                                 <exclude>**/*.MF</exclude>
                                 <!--RAT doesn't seem to recognize MIT style licenses-->
                                 <exclude>manual/src/styles/print.css</exclude>
                                 <!-- RAT doesn't recognize BSD license in transaction-manager logger -->
                                 <exclude>**/objectweb/howl/log/Logger.java</exclude>
+                                <exclude>.gitignore</exclude>
+                                <exclude>README.md</exclude>
+                                <exclude>*.cfg</exclude>
+                                <exclude>**/README.md</exclude>
+                                <exclude>**/Readme.md</exclude>
+                                <exclude>**/NOTICE.vm</exclude>
+                                <exclude>**/dependency-reduced-pom.xml</exclude>
                             </excludes>
                         </configuration>
                     </plugin>