You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2014/10/21 00:13:36 UTC

git commit: mvn apache-rat:check (current version) now runs all the way through. If we remove the "rat" profile, we can use the same execution model in the main build.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 662aec1a3 -> e3c12f189


mvn apache-rat:check (current version) now runs all the way through. If
we remove the "rat" profile, we can use the same execution model in the
main build.

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

Branch: refs/heads/master
Commit: e3c12f189d899f70b9549fde9d2ccf6acdbb75bb
Parents: 662aec1
Author: Gary Gregory <ga...@gmail.com>
Authored: Mon Oct 20 18:13:33 2014 -0400
Committer: Gary Gregory <ga...@gmail.com>
Committed: Mon Oct 20 18:13:33 2014 -0400

----------------------------------------------------------------------
 pom.xml | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/e3c12f18/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e23d48f..965f6c6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -964,6 +964,33 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>
       </plugin>
+      <!-- RAT report -->
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>${rat.plugin.version}</version>
+        <configuration>
+          <excludes>
+            <exclude>src/main/resources/META-INF/services/**/*</exclude>
+            <!-- IntelliJ files -->
+            <exclude>.idea/**/*</exclude>
+            <exclude>src/test/resources/**/*</exclude>
+            <!-- VM metadata -->
+            <exclude>.vagrant/**/*</exclude>
+            <!-- IDE settings imports -->
+            <exclude>src/ide/**</exclude>
+            <!-- does it even make sense to apply a license to a GPG signature? -->
+            <exclude>**/*.asc</exclude>
+            <!-- jQuery is MIT-licensed, but RAT can't figure it out -->
+            <exclude>src/site/resources/js/jquery.js</exclude>
+            <exclude>src/site/resources/js/jquery.min.js</exclude>
+            <!-- Generated files -->
+            <exclude>log4j-distribution/target/**/*</exclude>
+            <!-- Other -->
+            <exclude>felix-cache/**</exclude>            
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <reporting>
@@ -1043,7 +1070,7 @@
             <!-- VM metadata -->
             <exclude>.vagrant/**/*</exclude>
             <!-- IDE settings imports -->
-            <exclude>src/ide/**/*</exclude>
+            <exclude>src/ide/**</exclude>
             <!-- does it even make sense to apply a license to a GPG signature? -->
             <exclude>**/*.asc</exclude>
             <!-- jQuery is MIT-licensed, but RAT can't figure it out -->