Repository: orc Updated Branches: refs/heads/branch-1.3 0992748fe -> a62a39007
ORC-188 Fix RAT problems Fixes #117 Signed-off-by: Owen O'Malley <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/orc/repo Commit: http://git-wip-us.apache.org/repos/asf/orc/commit/a62a3900 Tree: http://git-wip-us.apache.org/repos/asf/orc/tree/a62a3900 Diff: http://git-wip-us.apache.org/repos/asf/orc/diff/a62a3900 Branch: refs/heads/branch-1.3 Commit: a62a3900722296c8c1ae24d557ee93a6f2ca0bc3 Parents: 0992748 Author: Owen O'Malley <[email protected]> Authored: Mon May 8 14:04:15 2017 -0700 Committer: Owen O'Malley <[email protected]> Committed: Mon May 8 15:53:48 2017 -0700 ---------------------------------------------------------------------- java/core/pom.xml | 6 +++--- java/pom.xml | 21 +++++++++++++++++++++ 2 files changed, 24 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/orc/blob/a62a3900/java/core/pom.xml ---------------------------------------------------------------------- diff --git a/java/core/pom.xml b/java/core/pom.xml index e288164..11b67d7 100644 --- a/java/core/pom.xml +++ b/java/core/pom.xml @@ -102,9 +102,9 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> - <sourceFileExcludes> - <exclude>**/OrcProto.java</exclude> - </sourceFileExcludes> + <sourceFileExcludes> + <exclude>**/OrcProto.java</exclude> + </sourceFileExcludes> <destDir>${project.artifactId}</destDir> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/orc/blob/a62a3900/java/pom.xml ---------------------------------------------------------------------- diff --git a/java/pom.xml b/java/pom.xml index 951f127..810e613 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -167,6 +167,27 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <version>0.10</version> + <configuration> + <excludeSubProject>false</excludeSubProject> + <excludes> + <exclude>**/*.json</exclude> + <exclude>**/*.json.gz</exclude> + <exclude>**/*.orc</exclude> + <exclude>**/*.out</exclude> + <exclude>**/*.schema</exclude> + <exclude>**/target/**</exclude> + <exclude>.idea/**</exclude> + </excludes> + </configuration> + </plugin> </plugins> <pluginManagement> <plugins>
