AMBARI-18076. Exclude Jbehave story files from rat check (oleewere)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/51946d9d Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/51946d9d Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/51946d9d Branch: refs/heads/logsearch-ga Commit: 51946d9d41a4bda2a9d0c1e8a2740a51a459cd41 Parents: 1b07a6d Author: oleewere <[email protected]> Authored: Thu Aug 25 15:37:49 2016 +0200 Committer: oleewere <[email protected]> Committed: Sat Nov 5 14:46:44 2016 +0100 ---------------------------------------------------------------------- ambari-logsearch/ambari-logsearch-it/pom.xml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/51946d9d/ambari-logsearch/ambari-logsearch-it/pom.xml ---------------------------------------------------------------------- diff --git a/ambari-logsearch/ambari-logsearch-it/pom.xml b/ambari-logsearch/ambari-logsearch-it/pom.xml index d918c8a..f9a62cd 100644 --- a/ambari-logsearch/ambari-logsearch-it/pom.xml +++ b/ambari-logsearch/ambari-logsearch-it/pom.xml @@ -125,6 +125,27 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <exclude>README.md</exclude> + <exclude>**/*.json</exclude> + <exclude>**/*.log</exclude> + <exclude>**/*.txt</exclude> + <exclude>**/*.story</exclude> + </excludes> + </configuration> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build>
