You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by ma...@apache.org on 2017/10/05 18:42:34 UTC

[2/3] incubator-netbeans git commit: Updating the rat exclusion list

Updating the rat exclusion list

Modified the exclusion list to:

	- */nbproject/build-impl.xml
	- */nbproject/jfx-impl.xml
	- */nbproject/genfiles.properties
	- */nbproject/private/**

There's a single 'private' directory in the codebase, with an empty file (no license headers).

incubator-netbeans$ find . -name private -type d
./xml.schema.model/test/unit/src/org/netbeans/modules/xml/schema/model/resources/dummyProject/nbproject/private

incubator-netbeans$ find . -name private -type d -print0 | xargs -0 ls
tmpfile

incubator-netbeans$ find . -name private -type d -print0 | xargs -0 grep -R -i CDDL

incubator-netbeans$ find . -name private -type d -print0 | xargs -0 grep -R -i license


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

Branch: refs/heads/master
Commit: 80781294b2d7d4c2547b1d81efff3722ac7ab0d6
Parents: 40a715a
Author: Antonio Vieiro <an...@vieiro.net>
Authored: Tue Oct 3 18:28:02 2017 +0200
Committer: Antonio Vieiro <an...@vieiro.net>
Committed: Tue Oct 3 18:28:02 2017 +0200

----------------------------------------------------------------------
 nbbuild/build.xml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-netbeans/blob/80781294/nbbuild/build.xml
----------------------------------------------------------------------
diff --git a/nbbuild/build.xml b/nbbuild/build.xml
index 4b74d52..3bd9cd7 100644
--- a/nbbuild/build.xml
+++ b/nbbuild/build.xml
@@ -1952,9 +1952,10 @@ It is possible to use -Ddebug.port=3234 -Ddebug.pause=y to start the system in d
                 <exclude name="nbbuild/netbeans/**" />
                 <exclude name="**/manifest.mf" /> <!--do not nativelly support comments-->
                 <exclude name="*/nbproject/*.sig" /> <!--generated signatures for past versions-->
-                <exclude name="**/nbproject/build-impl.xml" /> <!--generated, no degree of creativity -->
-                <exclude name="**/nbproject/jfx-impl.xml" /> <!--generated, no degree of creativity -->
-                <exclude name="**/nbproject/genfiles.properties" /> <!--generated, no degree of creativity -->
+                <exclude name="*/nbproject/build-impl.xml" /> <!--generated, no degree of creativity -->
+                <exclude name="*/nbproject/jfx-impl.xml" /> <!--generated, no degree of creativity -->
+                <exclude name="*/nbproject/genfiles.properties" /> <!--generated, no degree of creativity -->
+                <exclude name="*/nbproject/private/**" /> <!--user-specific files -->
                 <exclude name="*/external/*-license.txt" /> <!--licenses for external dependencies-->
                 <exclude name="*/external/*-notice.txt" /> <!--notices for external dependencies-->
                 <exclude name="**/*.pass" /> <!--generated test files-->