RYA-469 Have Rat plugin ignore .nt test files that were added.
Project: http://git-wip-us.apache.org/repos/asf/incubator-rya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-rya/commit/40c34696 Tree: http://git-wip-us.apache.org/repos/asf/incubator-rya/tree/40c34696 Diff: http://git-wip-us.apache.org/repos/asf/incubator-rya/diff/40c34696 Branch: refs/heads/master Commit: 40c34696cdc6218a163434cf07ff953cfa76ee4d Parents: 5adda98 Author: eric.white <[email protected]> Authored: Fri Mar 30 15:46:12 2018 -0400 Committer: Valiyil <[email protected]> Committed: Fri Apr 6 11:59:36 2018 -0400 ---------------------------------------------------------------------- extras/indexingExample/pom.xml | 14 ++++++++++++++ extras/rya.streams/client/pom.xml | 14 ++++++++++++++ 2 files changed, 28 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/40c34696/extras/indexingExample/pom.xml ---------------------------------------------------------------------- diff --git a/extras/indexingExample/pom.xml b/extras/indexingExample/pom.xml index bb9e07b..4f14cf9 100644 --- a/extras/indexingExample/pom.xml +++ b/extras/indexingExample/pom.xml @@ -92,6 +92,20 @@ under the License. </dependencies> <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <!-- RDF Data Files --> + <exclude>**/main/resources/*.nt</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/40c34696/extras/rya.streams/client/pom.xml ---------------------------------------------------------------------- diff --git a/extras/rya.streams/client/pom.xml b/extras/rya.streams/client/pom.xml index 3529537..54a475c 100644 --- a/extras/rya.streams/client/pom.xml +++ b/extras/rya.streams/client/pom.xml @@ -114,6 +114,20 @@ under the License. </dependencies> <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <!-- RDF Data Files --> + <exclude>**/test/resources/*.nt</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId>
