You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2019/06/28 13:12:32 UTC

[commons-daemon] 02/02: Correct error in a089ee0 that broke the packaging

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 8125fce075259e7a6f87255ffe72f7eb717c541b
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Fri Jun 28 14:11:16 2019 +0100

    Correct error in a089ee0 that broke the packaging
---
 pom.xml | 26 ++++++++++++++------------
 1 file changed, 14 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1720f1d..da3aaf0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -136,19 +136,21 @@
             </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>
+    <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>
   </build>
 </project>