Repository: commons-compress
Updated Branches:
  refs/heads/master 726ba6f0f -> d5867f185


Move apache-rat configuration from site to pluginManagement section, so that it 
also applies when "mvn apache-rat:check" is run.

Remove exclusion of git files from apache-rat configuration, as these files are 
excluded by default.


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

Branch: refs/heads/master
Commit: a172b4b66ab363ab969d24ad95d9472d86e98651
Parents: 726ba6f
Author: pascalschumacher <pascalschumac...@gmx.net>
Authored: Sun Dec 18 17:19:50 2016 +0100
Committer: pascalschumacher <pascalschumac...@gmx.net>
Committed: Sun Dec 18 17:19:50 2016 +0100

----------------------------------------------------------------------
 pom.xml | 28 +++++++++++++---------------
 1 file changed, 13 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/a172b4b6/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index cfe9395..18a1082 100644
--- a/pom.xml
+++ b/pom.xml
@@ -195,6 +195,19 @@ jar, tar, zip, dump, 7z, arj.
             </tags>
           </configuration> 
         </plugin>
+        <plugin>
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <version>${commons.rat.version}</version>
+          <configuration>
+            <excludes>
+              <!-- files used during tests -->
+              <exclude>src/test/resources/**</exclude>
+              <exclude>.pmd</exclude>
+              <exclude>.projectile</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
@@ -310,21 +323,6 @@ jar, tar, zip, dump, 7z, arj.
           
<excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile>
        </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.rat</groupId>
-        <artifactId>apache-rat-plugin</artifactId>
-        <version>${commons.rat.version}</version>
-        <configuration>
-          <excludes>
-            <!-- files used during tests -->
-            <exclude>src/test/resources/**</exclude>
-            <exclude>.pmd</exclude>
-            <exclude>.gitignore</exclude>
-            <exclude>.gitattributes</exclude>
-            <exclude>.projectile</exclude>
-          </excludes>
-        </configuration>
-      </plugin>
     </plugins>
   </reporting>
 

Reply via email to