Given that the files were auto-generated, do we require another RC? I think that the precedent is yes, but the question I think is a reasonable one.

-Rob


On 6/19/2019 6:46 AM, ma...@apache.org wrote:

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git

commit a089ee036affef903029b481de9e9137294b0217
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Jun 19 11:46:19 2019 +0100

     Update RAT config to exclude generated files and autoconf related files
---
  pom.xml | 49 ++++++++++++++++++++++++++++++++++---------------
  1 file changed, 34 insertions(+), 15 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5110711..c8c4c40 100644
--- a/pom.xml
+++ b/pom.xml
@@ -116,20 +116,39 @@
    </properties>
<build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-        <configuration>
-          <descriptors>
-            <descriptor>src/assembly/native-src.xml</descriptor>
-            <descriptor>src/assembly/bin.xml</descriptor>
-            <descriptor>src/assembly/src.xml</descriptor>
-            <descriptor>src/assembly/win.xml</descriptor>
-          </descriptors>
-          <tarLongFileMode>gnu</tarLongFileMode>
-        </configuration>
-      </plugin>
-    </plugins>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <configuration>
+            <excludes>
+              <!-- Free Software (see header) -->
+              <exclude>src/native/unix/configure</exclude>
+              <!-- GPL with applicable exception that allows ALv2 -->
+              <exclude>src/native/unix/support/config.guess</exclude>
+              <exclude>src/native/unix/support/config.sub</exclude>
+              <!-- Files created by Configure -->
+              <!-- Excluded from Git but may be present locally -->
+              <exclude>src/native/unix/config.nice</exclude>
+              <exclude>src/native/unix/config.status</exclude>
+              <exclude>src/native/unix/config.log</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
+        <plugin>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <configuration>
+            <descriptors>
+              <descriptor>src/assembly/native-src.xml</descriptor>
+              <descriptor>src/assembly/bin.xml</descriptor>
+              <descriptor>src/assembly/src.xml</descriptor>
+              <descriptor>src/assembly/win.xml</descriptor>
+            </descriptors>
+            <tarLongFileMode>gnu</tarLongFileMode>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
    </build>
-
  </project>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to