You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2019/02/16 21:50:44 UTC

[maven-assembly-plugin] 01/01: [MASSEMBLY-871] Descriptor ref bin causes error messages in the build log on Windows

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

michaelo pushed a commit to branch MASSEMBLY-871
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git

commit e9ab2cd7fae69a0fe3bbfdd26455bd3803afaf6d
Author: Michael Osipov <19...@gmx.net>
AuthorDate: Sat Feb 16 22:50:22 2019 +0100

    [MASSEMBLY-871] Descriptor ref bin causes error messages in the build log on Windows
---
 src/main/resources/assemblies/bin.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/assemblies/bin.xml b/src/main/resources/assemblies/bin.xml
index 3fe82ab..943cb32 100644
--- a/src/main/resources/assemblies/bin.xml
+++ b/src/main/resources/assemblies/bin.xml
@@ -31,7 +31,7 @@
   <fileSets>
     <fileSet>
       <directory>\${project.basedir}</directory>
-      <outputDirectory>/</outputDirectory>
+      <outputDirectory></outputDirectory>
       <includes>
         <include>README*</include>
         <include>LICENSE*</include>
@@ -40,7 +40,7 @@
     </fileSet>
     <fileSet>
       <directory>\${project.build.directory}</directory>
-      <outputDirectory>/</outputDirectory>
+      <outputDirectory></outputDirectory>
       <includes>
         <include>*.jar</include>
       </includes>