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/bb644171 Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/bb644171 Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/bb644171 Branch: refs/heads/feature/SLIDER-151_REST_API Commit: bb644171882f09bf30e271cb6692c6eaac8c3cc2 Parents: 20fc300 Author: Billie Rinaldi <[email protected]> Authored: Thu Dec 4 15:35:21 2014 -0800 Committer: Billie Rinaldi <[email protected]> Committed: Thu Dec 4 15:35:21 2014 -0800 ---------------------------------------------------------------------- app-packages/pom.xml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/bb644171/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>
