You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by jt...@apache.org on 2017/09/07 15:22:27 UTC

incubator-netbeans-html4j git commit: Using rat-maven-plugin to verify all files are clean from Apache perspective. Excluding *.sigtest files as they are generated by mvn sigtest:generate command on a previously released version of the HTML/Java API - e.

Repository: incubator-netbeans-html4j
Updated Branches:
  refs/heads/master 7c56cda29 -> 0f2bc8fb3


Using rat-maven-plugin to verify all files are clean from Apache perspective.
Excluding *.sigtest files as they are generated by mvn sigtest:generate command on a previously released version of the HTML/Java API - e.g. there is no degree of creativity in them.


Project: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/commit/0f2bc8fb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/tree/0f2bc8fb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/diff/0f2bc8fb

Branch: refs/heads/master
Commit: 0f2bc8fb39482d6915c6b98c22d40ffaa553e34f
Parents: 7c56cda
Author: Jaroslav Tulach <ja...@oracle.com>
Authored: Thu Sep 7 17:22:16 2017 +0200
Committer: Jaroslav Tulach <ja...@oracle.com>
Committed: Thu Sep 7 17:22:16 2017 +0200

----------------------------------------------------------------------
 pom.xml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/blob/0f2bc8fb/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0bbcdce..e9e1d2a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -195,6 +195,33 @@ org.netbeans.html.boot.impl:org.netbeans.html.boot.fx:org.netbeans.html.context.
                     <releaseVersion>1.3</releaseVersion>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <version>0.12</version>
+                <executions>
+                    <execution>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>check</goal>
+                            <goal>rat</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <excludes>
+                        <exclude>**/target/**</exclude>
+                        <exclude>.gitignore</exclude>
+                        <exclude>**/*git/**</exclude>
+                        <exclude>**/*.sigtest</exclude>
+                    </excludes>
+                    <excludeSubProjects>false</excludeSubProjects>
+                    <useDefaultExcludes>false</useDefaultExcludes>
+                    <useEclipseDefaultExcludes>false</useEclipseDefaultExcludes>
+                    <useIdeaDefaultExcludes>false</useIdeaDefaultExcludes>
+                    <useMavenDefaultExcludes>false</useMavenDefaultExcludes>
+                </configuration>
+            </plugin>
       </plugins>
       <pluginManagement>
           <plugins>