You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nemo.apache.org by ja...@apache.org on 2018/11/16 04:15:12 UTC

[incubator-nemo] branch master updated: [NEMO-283] Exclude DAG files from RAT (#158)

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

jangho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nemo.git


The following commit(s) were added to refs/heads/master by this push:
     new 3105608  [NEMO-283] Exclude DAG files from RAT (#158)
3105608 is described below

commit 3105608e5590f68174ffd27055929d591b9bc9ed
Author: jooykim <jo...@gmail.com>
AuthorDate: Fri Nov 16 13:15:08 2018 +0900

    [NEMO-283] Exclude DAG files from RAT (#158)
    
    JIRA: [NEMO-283: Add an Exclusion Rule for RAT Plugin](https://issues.apache.org/jira/projects/NEMO/issues/NEMO-283)
    
    **Major changes:**
    - Modifies POM (Adds an exclusion rule for RAT plugin)
    
    **Minor changes to note:**
    - N/A
    
    **Tests for the changes:**
    - N/A (The build suffices)
    
    **Other comments:**
    - N/A
---
 .gitignore | 7 +++++++
 pom.xml    | 2 ++
 2 files changed, 9 insertions(+)

diff --git a/.gitignore b/.gitignore
index 641eb9b..82c9630 100644
--- a/.gitignore
+++ b/.gitignore
@@ -56,3 +56,10 @@ ml-data
 tang.conf
 *.sw[op]
 -profile-*.json
+#
+# ----------------------------------------------------------------------
+# Release related files
+# ----------------------------------------------------------------------
+*.releaseBackup
+*.tag
+release.properties
diff --git a/pom.xml b/pom.xml
index fa09050..20cfc45 100644
--- a/pom.xml
+++ b/pom.xml
@@ -295,6 +295,8 @@ under the License.
                         <exclude>formatter.xml</exclude>
                         <!-- javadoc -->
                         <exclude>**/docs/**</exclude>
+                        <!-- dag files -->
+                        <exclude>**/dag/**</exclude>
                     </excludes>
                 </configuration>
             </plugin>