SLIDER-655 fix rat check
Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/8f4574c7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/8f4574c7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/8f4574c7 Branch: refs/heads/branches/branch-0.6 Commit: 8f4574c786529b4d3842fd3e2f2c2cc316029a0a Parents: d5dfdcc Author: Billie Rinaldi <[email protected]> Authored: Thu Dec 4 15:35:21 2014 -0800 Committer: Steve Loughran <[email protected]> Committed: Sat Jan 10 16:45:36 2015 +0000 ---------------------------------------------------------------------- app-packages/pom.xml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/8f4574c7/app-packages/pom.xml ---------------------------------------------------------------------- diff --git a/app-packages/pom.xml b/app-packages/pom.xml index 7925cfb..7550692 100644 --- a/app-packages/pom.xml +++ b/app-packages/pom.xml @@ -65,6 +65,33 @@ <module>storm-win</module> </modules> </profile> + <profile> + <id>rat</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <version>${apache-rat-plugin.version}</version> + <executions> + <execution> + <id>check-licenses</id> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + <configuration> + <excludes> + <exclude>**/*.json</exclude> + <exclude>**/test_password_file</exclude> + <exclude>command-logger/**</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> </profiles>
