This is an automated email from the ASF dual-hosted git repository. jooykim pushed a commit to branch add-rat-exclusion in repository https://gitbox.apache.org/repos/asf/incubator-nemo.git
commit 4272018435de00b9e43b560b1a4d53afd455b60b Author: Joo Yeon Kim <[email protected]> AuthorDate: Thu Nov 15 18:11:53 2018 +0900 pom.xml -> exclude dag files from rat --- .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>
