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/10 22:30:24 UTC

[helix] branch helix-0.9-release updated: 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 helix-0.9-release
in repository https://gitbox.apache.org/repos/asf/helix.git


The following commit(s) were added to refs/heads/helix-0.9-release by this push:
     new 8d08d01  Upgrade Apache rat version and add exclusion paths
8d08d01 is described below

commit 8d08d0106e3b12f14c9789600a60e1b1d6cfd9df
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.
---
 pom.xml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a013fa4..faebbd7 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>