This is an automated email from the ASF dual-hosted git repository.
pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
The following commit(s) were added to refs/heads/master by this push:
new 46ce5eb1 RAT-467: Add .externalToolBuilders to the default Eclipse
exclusions
46ce5eb1 is described below
commit 46ce5eb11b99feb87ee63878759eb06ac8ace255
Author: P. Ottlinger <[email protected]>
AuthorDate: Sat Dec 7 22:54:43 2024 +0100
RAT-467: Add .externalToolBuilders to the default Eclipse exclusions
---
.../main/java/org/apache/rat/config/exclusion/StandardCollection.java | 3 ++-
src/changes/changes.xml | 3 +++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git
a/apache-rat-core/src/main/java/org/apache/rat/config/exclusion/StandardCollection.java
b/apache-rat-core/src/main/java/org/apache/rat/config/exclusion/StandardCollection.java
index a70d08b5..1bd805f4 100644
---
a/apache-rat-core/src/main/java/org/apache/rat/config/exclusion/StandardCollection.java
+++
b/apache-rat-core/src/main/java/org/apache/rat/config/exclusion/StandardCollection.java
@@ -84,7 +84,8 @@ public enum StandardCollection {
* The files and directories created by an Eclipse IDE based tool.
*/
ECLIPSE("The files and directories created by an Eclipse IDE based tool.",
- Arrays.asList("**/.checkstyle", "**/.classpath",
"**/.factorypath", "**/.project", "**/.settings/**"),
+ Arrays.asList("**/.checkstyle", "**/.classpath", "**/.factorypath",
+ "**/.project", "**/.settings/**",
"**/.externalToolBuilders"),
null, null),
/**
* The files and directories created by GIT source code control to support
GIT, also processes files listed in '.gitignore'.
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index aec8db8f..7a655a28 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -72,6 +72,9 @@ The <action> type attribute can be one of:
</release>
-->
<release version="0.17-SNAPSHOT" date="xxxx-yy-zz" description="Current
SNAPSHOT - release to be done">
+ <action issue="RAT-467" type="add" dev="pottlinger">
+ Add .externalToolBuilders to the default Eclipse exclusions during RAT
runs.
+ </action>
<action issue="RAT-453" type="add" dev="claudenw">
Change layout and rendering of RAT report to contain RAT version
information, counter values, encoding information of scanned files and
aggregation by license type.
</action>