[
http://jira.codehaus.org/browse/MASSEMBLY-298?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=145120#action_145120
]
Antony Stubbs commented on MASSEMBLY-298:
-----------------------------------------
fyi, patch works for me except for one bizzare thing:
the exclusions only for work when suing:
mvn clean package assembly:directory
but do not work for:
mvn package
which runs from my pom:
{code}
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>directory</goal>
</goals>
</execution>
</executions>
{code}
On another note, it also includes empty directories which is undesired. is
there an exclusion pattern for empty dirs?
> Includes/Excludes within <unpackOptions> are ignored
> ----------------------------------------------------
>
> Key: MASSEMBLY-298
> URL: http://jira.codehaus.org/browse/MASSEMBLY-298
> Project: Maven 2.x Assembly Plugin
> Issue Type: Bug
> Affects Versions: 2.2-beta-2
> Environment: Maven 2.0.8, Intel Mac 10.5, JDK 5.0
> Reporter: Nathaniel Harward
> Attachments: module-set-assembly-phase.patch
>
>
> I have the following snippet in my assembly descriptor which does not work:
> --snip--
> <moduleSet>
> <includes>
> <include>my:module</include>
> </includes>
> <binaries>
> <unpack>true</unpack>
> <unpackOptions>
> <excludes>
> <exclude>META-INF/**</exclude>
>
> <exclude>**/.do_not_remove</exclude>
> </excludes>
> </unpackOptions>
> <outputFileNameMapping/>
> <outputDirectory>/</outputDirectory>
> <fileMode>644</fileMode>
> <directoryMode>755</directoryMode>
> </binaries>
> </moduleSet>
> --snip--
> Debug output shows:
> --snip--
> [DEBUG] includes:
> **/*
> [DEBUG] excludes:
> none
> --snip--
> I believe the problem is at line 271/272 of ModuleSetAssemblyPhase (in the
> 2.2-beta-2 revision, anyway) -- it calls "task.setUnpack( binaries.isUnpack()
> );" but does not set the unpack options (if present), hence they are ignored
> :(
> Patch is attached, and works just fine in my case above.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira