You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2020/01/04 14:45:43 UTC

[commons-codec] branch master updated: Duplicate Apache RAT exclusions in the section.

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git


The following commit(s) were added to refs/heads/master by this push:
     new 45263f9  Duplicate Apache RAT exclusions in the <reporting> section.
45263f9 is described below

commit 45263f98f508e9ea4fc3315b1ca8ac85ab8f96b6
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sat Jan 4 14:45:39 2020 +0000

    Duplicate Apache RAT exclusions in the <reporting> section.
    
    This follows an issue raised by Rob Tompkins for 1.14-RC1 that the RAT
    report on the site contained an unlicensed file.
---
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/pom.xml b/pom.xml
index b867e49..4020810 100644
--- a/pom.xml
+++ b/pom.xml
@@ -344,6 +344,17 @@ limitations under the License.
   <reporting>
     <plugins>
       <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>src/test/resources/bla.tar.xz</exclude>
+            <exclude>src/test/resources/empty.bin</exclude>
+            <exclude>src/test/resources/small.bin</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>
         <version>${checkstyle.version}</version>