This is an automated email from the ASF dual-hosted git repository. markt-asf pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-daemon.git
commit 1da56aa7fb9b7d2cd454bbbe79eac1354fd01f8e Author: Mark Thomas <[email protected]> AuthorDate: Wed May 20 13:21:15 2026 +0100 Multiple <inputExclude> elements should be inside an <inputExcludes> --- pom.xml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index 92eb7ee..1aac67b 100644 --- a/pom.xml +++ b/pom.xml @@ -184,18 +184,20 @@ <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> - <!-- Free Software (see header) --> - <inputExclude>src/native/unix/configure</inputExclude> - <!-- GPL with applicable exception that allows ALv2 --> - <inputExclude>src/native/unix/support/config.guess</inputExclude> - <inputExclude>src/native/unix/support/config.sub</inputExclude> - <!-- Files created by Configure --> - <!-- Excluded from Git but may be present locally --> - <inputExclude>src/native/unix/config.nice</inputExclude> - <inputExclude>src/native/unix/config.status</inputExclude> - <inputExclude>src/native/unix/config.log</inputExclude> - <!-- autoconf cache - not included in release --> - <inputExclude>src/native/unix/autom4te.cache/**</inputExclude> + <inputExcludes> + <!-- Free Software (see header) --> + <inputExclude>src/native/unix/configure</inputExclude> + <!-- GPL with applicable exception that allows ALv2 --> + <inputExclude>src/native/unix/support/config.guess</inputExclude> + <inputExclude>src/native/unix/support/config.sub</inputExclude> + <!-- Files created by Configure --> + <!-- Excluded from Git but may be present locally --> + <inputExclude>src/native/unix/config.nice</inputExclude> + <inputExclude>src/native/unix/config.status</inputExclude> + <inputExclude>src/native/unix/config.log</inputExclude> + <!-- autoconf cache - not included in release --> + <inputExclude>src/native/unix/autom4te.cache/**</inputExclude> + </inputExcludes> </configuration> </plugin> <plugin>
