You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by hu...@apache.org on 2019/06/24 23:49:32 UTC

[helix] 10/15: Upgrade Apache rat version and add exclusion paths

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

hulee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git

commit e30fe4bf313f230c50ba424a372c9c9dcf1a4735
Author: Hunter Lee <hu...@linkedin.com>
AuthorDate: Mon Jun 10 15:29:58 2019 -0700

    Upgrade Apache rat version and add exclusion paths
    
    A part of Helix release process requires the rat plugin to perform checks. However, there are scripts and website files that do not require this kind of checks. This diff adds exclusion paths to the pom.xml. Note that there are several Java files that do not still pass the checks due to them not having the Apache license. This still needs to be fixed in the future.
    
    RB=1695987
    G=helix-reviewers
    A=jxue
    
    Signed-off-by: Hunter Lee <hu...@linkedin.com>
---
 pom.xml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 71fd300..82c4f34 100644
--- a/pom.xml
+++ b/pom.xml
@@ -601,7 +601,15 @@ under the License.
         <plugin>
           <groupId>org.apache.rat</groupId>
           <artifactId>apache-rat-plugin</artifactId>
-          <version>0.8</version>
+          <version>0.13</version>
+          <configuration>
+            <!-- Exclude files/folders for Apache release -->
+            <excludes>
+              <exclude>website/**</exclude>
+              <exclude>.reviewboardrc</exclude>
+              <exclude>scripts/**</exclude>
+            </excludes>
+          </configuration>
         </plugin>
       </plugins>
     </pluginManagement>