Repository: bookkeeper Updated Branches: refs/heads/master 5531014ab -> d8a7ac310
BOOKKEEPER-1053: Upgrade RAT maven version to 0.12 and ignore Eclipse project files Author: Matteo Merli <[email protected]> Reviewers: Jia Zhai <None> Closes #143 from merlimat/rat Project: http://git-wip-us.apache.org/repos/asf/bookkeeper/repo Commit: http://git-wip-us.apache.org/repos/asf/bookkeeper/commit/d8a7ac31 Tree: http://git-wip-us.apache.org/repos/asf/bookkeeper/tree/d8a7ac31 Diff: http://git-wip-us.apache.org/repos/asf/bookkeeper/diff/d8a7ac31 Branch: refs/heads/master Commit: d8a7ac310947049f65687e33d92b847c44c91a39 Parents: 5531014 Author: Matteo Merli <[email protected]> Authored: Tue May 9 18:17:19 2017 -0700 Committer: Matteo Merli <[email protected]> Committed: Tue May 9 18:17:19 2017 -0700 ---------------------------------------------------------------------- bookkeeper-server/pom.xml | 6 +++++- pom.xml | 9 +++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bookkeeper/blob/d8a7ac31/bookkeeper-server/pom.xml ---------------------------------------------------------------------- diff --git a/bookkeeper-server/pom.xml b/bookkeeper-server/pom.xml index ecd84e2..619807c 100644 --- a/bookkeeper-server/pom.xml +++ b/bookkeeper-server/pom.xml @@ -279,12 +279,16 @@ <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> - <version>0.7</version> <configuration> <excludes> <!-- exclude generated file //--> <exclude>**/DataFormats.java</exclude> <exclude>**/BookkeeperProtocol.java</exclude> + <exclude>**/target/**/*</exclude> + <exclude>**/.classpath</exclude> + <exclude>**/.gitignore</exclude> + <exclude>**/.project</exclude> + <exclude>**/.settings/*</exclude> </excludes> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/bookkeeper/blob/d8a7ac31/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 3a7a770..73f62b4 100644 --- a/pom.xml +++ b/pom.xml @@ -116,15 +116,20 @@ <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> - <version>0.7</version> + <version>0.12</version> <configuration> <excludes> <exclude>.git/**/*</exclude> + <exclude>**/target/**/*</exclude> <exclude>**/.svn/**/*</exclude> <exclude>CHANGES.txt</exclude> <exclude>**/README</exclude> <exclude>**/apidocs/*</exclude> - <exclude>test-patch/**/*</exclude> + <exclude>test-patch/**/*</exclude> + <exclude>**/.classpath</exclude> + <exclude>**/.gitignore</exclude> + <exclude>**/.project</exclude> + <exclude>**/.settings/*</exclude> </excludes> </configuration> </plugin>
