This is an automated email from the ASF dual-hosted git repository.
grobmeier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-chainsaw.git
The following commit(s) were added to refs/heads/master by this push:
new 270ce55 fixed Rat configuration
270ce55 is described below
commit 270ce55f8983c19fe018f62ea29bcc67dd8dc37f
Author: Christian Grobmeier <[email protected]>
AuthorDate: Fri Dec 22 12:24:46 2023 +0100
fixed Rat configuration
---
pom.xml | 15 +--------------
1 file changed, 1 insertion(+), 14 deletions(-)
diff --git a/pom.xml b/pom.xml
index b8c57b1..4c1e6de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -215,10 +215,6 @@
<build>
<plugins>
- <plugin>
- <groupId>org.apache.rat</groupId>
- <artifactId>apache-rat-plugin</artifactId>
- </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
@@ -369,18 +365,9 @@
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<consoleOutput>true</consoleOutput>
- <excludes>
+ <excludes combine.children="append">
<!-- usually testing log files -->
<exclude>**/*.log</exclude>
-
- <!-- should come by parent, but parent does not allow override
so far (PR in progress -->
- <exclude>.java-version</exclude>
- <exclude>.mvn/jvm.config</exclude>
- <exclude>**/*.txt</exclude>
- <exclude>src/changelog/**/*.xml</exclude>
- <exclude>.github/ISSUE_TEMPLATE/*.md</exclude>
- <exclude>.github/pull_request_template.md</exclude>
-
</excludes>
</configuration>
</plugin>