Edwin van der Ham created MASSEMBLY-879:
-------------------------------------------
Summary: useDefaultExcludes has no effect in dependencySet/unpack
Key: MASSEMBLY-879
URL: https://issues.apache.org/jira/browse/MASSEMBLY-879
Project: Maven Assembly Plugin
Issue Type: Bug
Components: dependencySet
Affects Versions: 3.1.0
Reporter: Edwin van der Ham
I have the following dependencySet:
{code:java}
<dependencySet>
<useProjectArtifact>false</useProjectArtifact>
<includes>
<include>some-artifact:of-type-zip</include>
</includes>
<outputDirectory>MyOutputDir</outputDirectory>
<unpack>true</unpack>
<unpackOptions>
<useDefaultExcludes>false</useDefaultExcludes>
</unpackOptions>
<scope>runtime</scope>
</dependencySet>
{code}
The zip artifact included here contains some files and also a .gitignore file.
No matter how hard I try, but I cannot get the unpacker to also unpack the
.gitignore file on my Jenkins build server. It is running CentOS and maven
3.3.3. On my windows machine, running maven 3.5.2 it will always include the
.gitignore, even if I set the value of useDefaultExcludes to true.
So it seems that the useDefaultExcludes is simply ignored when used inside the
unpackOptions
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)