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 2019/11/19 22:27:27 UTC

[commons-skin] 12/16: Exclude jquery.min.js from rat check.

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-skin.git

commit f1a48b70f421fdc6ee70ef825b1020bb104b7611
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Mon Nov 18 21:57:42 2019 +0000

    Exclude jquery.min.js from rat check.
---
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/pom.xml b/pom.xml
index a4d5197..04efca7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,6 +58,17 @@
           <tarLongFileMode>gnu</tarLongFileMode>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes combine.children="append">
+            <!-- https://jquery.org/license/ specifies this falls under the same licence as
+                 the containing project. -->
+            <exclude>src/main/resources/js/jquery.min.js</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
 
   </build>