Repository: incubator-rya Updated Branches: refs/heads/master 6ff05c067 -> e00b68865
Fix rat issue; Closes #145 Moved the rat exclude up into the pcj fluo parent pom so Function gets ignored regardless of profile. Project: http://git-wip-us.apache.org/repos/asf/incubator-rya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-rya/commit/e00b6886 Tree: http://git-wip-us.apache.org/repos/asf/incubator-rya/tree/e00b6886 Diff: http://git-wip-us.apache.org/repos/asf/incubator-rya/diff/e00b6886 Branch: refs/heads/master Commit: e00b688654604cf0e99070921f608ac18735e8e0 Parents: 6ff05c0 Author: isper3at <[email protected]> Authored: Mon Mar 13 12:10:50 2017 -0400 Committer: pujav65 <[email protected]> Committed: Fri Mar 17 09:38:33 2017 -0400 ---------------------------------------------------------------------- extras/rya.pcj.fluo/pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/e00b6886/extras/rya.pcj.fluo/pom.xml ---------------------------------------------------------------------- diff --git a/extras/rya.pcj.fluo/pom.xml b/extras/rya.pcj.fluo/pom.xml index 719c553..844c86b 100644 --- a/extras/rya.pcj.fluo/pom.xml +++ b/extras/rya.pcj.fluo/pom.xml @@ -74,6 +74,24 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + </plugin> </plugins> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <!-- Trivial listing of classes to be loaded via SPI --> + <exclude>**/resources/META-INF/services/**</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </project>
