mirror of https://github.com/apache/maven.git
PR: MNG-1328
Submitted by: Jerome Lacoste relative filesets incorrectly resolved when when used within reactor git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@330202 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
259a63ba90
commit
20ecf7400f
|
@ -444,6 +444,11 @@ public class AssemblyMojo
|
|||
|
||||
File archiveBaseDir = new File( directory );
|
||||
|
||||
if ( ! archiveBaseDir.isAbsolute() )
|
||||
{
|
||||
archiveBaseDir = new File( basedir, directory );
|
||||
}
|
||||
|
||||
if ( lineEnding != null )
|
||||
{
|
||||
copySetReplacingLineEndings( archiveBaseDir, tmpDir, includes, excludes, lineEnding );
|
||||
|
|
|
@ -102,6 +102,7 @@
|
|||
<name>directory</name>
|
||||
<version>1.0.0</version>
|
||||
<type>String</type>
|
||||
<description>Absolute or relative from the module's directory.</description>
|
||||
<required>true</required>
|
||||
</field>
|
||||
<field>
|
||||
|
|
Loading…
Reference in New Issue