TAJO-1365: Suppress release audit warnings on Jekins builds Closes #391
Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/c65bc3a2 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/c65bc3a2 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/c65bc3a2 Branch: refs/heads/index_support Commit: c65bc3a298490b4305f9ac2031cd05a0ad116495 Parents: 862514d Author: Jihun Kang <[email protected]> Authored: Mon Mar 2 10:43:00 2015 +0900 Committer: Jihun Kang <[email protected]> Committed: Mon Mar 2 10:43:00 2015 +0900 ---------------------------------------------------------------------- CHANGES | 2 ++ pom.xml | 13 ++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/c65bc3a2/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 729ea2a..c2b02a1 100644 --- a/CHANGES +++ b/CHANGES @@ -10,6 +10,8 @@ Release 0.11.0 - unreleased BUG FIXES + TAJO-1365: Suppress release audit warnings on Jekins builds. (jihun) + TAJO-1357: Resolve findbugs warnings on Tajo Catalog Modules. (jihun) TAJO-1351: Resolve findbug warnings on Tajo Common Module. (jihun) http://git-wip-us.apache.org/repos/asf/tajo/blob/c65bc3a2/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 7793550..8a2a990 100644 --- a/pom.xml +++ b/pom.xml @@ -183,7 +183,7 @@ <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> - <version>0.7</version> + <version>0.8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -339,6 +339,17 @@ <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> + <inherited>false</inherited> + <configuration> + <excludes> + <exclude>.git/**</exclude> + <exclude>.gitignore</exclude> + <exclude>.idea/**</exclude> + <exclude>.reviewboardrc</exclude> + <exclude>CHANGES</exclude> + <exclude>tajo-docs/src/main/sphinx/**</exclude> + </excludes> + </configuration> </plugin> </plugins> </build>
