This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-parent.git
The following commit(s) were added to refs/heads/master by this push:
new 5fe94b0 Use old RAT configuration options
5fe94b0 is described below
commit 5fe94b0e06d829319689d90f2c0ad722dec17457
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Mon Dec 8 18:10:27 2025 +0100
Use old RAT configuration options
---
pom.xml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/pom.xml b/pom.xml
index 55cebf5..05eb646 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1258,17 +1258,17 @@ under the License.</licenseText>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
- <inputExcludes combine.children="append">
- <inputExclude>.java-version</inputExclude>
+ <excludes combine.children="append">
+ <exclude>.java-version</exclude>
<!-- Jenkins job with local Maven repository -->
- <inputExcludes>.repository/**</inputExcludes>
+ <exclude>.repository/**</exclude>
<!-- Hudson Maven3 integration log -->
- <inputExcludes>.maven/spy.log</inputExcludes>
+ <exclude>.maven/spy.log</exclude>
<!-- Maven shade plugin -->
- <inputExcludes>dependency-reduced-pom.xml</inputExcludes>
+ <exclude>dependency-reduced-pom.xml</exclude>
<!-- GitHub Support -->
- <inputExcludes>.asf.yaml</inputExcludes>
- </inputExcludes>
+ <exclude>.asf.yaml</exclude>
+ </excludes>
</configuration>
<executions>
<execution>