SLIDER-977 Add the expected RAT exclusions for an app-package.
Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/4a7d563f Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/4a7d563f Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/4a7d563f Branch: refs/heads/develop Commit: 4a7d563f8cda5e0c32ea63790afc0c2e09f4889f Parents: da9bd5c Author: Josh Elser <els...@apache.org> Authored: Tue Jan 19 23:24:18 2016 -0500 Committer: Josh Elser <els...@apache.org> Committed: Wed Jan 20 12:10:22 2016 -0500 ---------------------------------------------------------------------- app-packages/kafka/pom.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/4a7d563f/app-packages/kafka/pom.xml ---------------------------------------------------------------------- diff --git a/app-packages/kafka/pom.xml b/app-packages/kafka/pom.xml index 743b622..d491109 100644 --- a/app-packages/kafka/pom.xml +++ b/app-packages/kafka/pom.xml @@ -114,5 +114,33 @@ </dependency> </dependencies> + <profiles> + <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>appConfig-default.json</exclude> + <exclude>resources-default.json</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project>