[ http://jira.codehaus.org/browse/MASSEMBLY-103?page=comments#action_78103 ] Richard van der Hoff commented on MASSEMBLY-103: ------------------------------------------------
oh, of course now the patch has bit-rotted. Meh, I hate it when that happens. If there /is/ any interest in applying this, let me know and I shall see about updating it. If it's just going to stagnate again, i won't bother and will stick with my custom build of version 2.1 of the plugin. > More powerful includes/excludes stuff in DependencySets in descriptors > ---------------------------------------------------------------------- > > Key: MASSEMBLY-103 > URL: http://jira.codehaus.org/browse/MASSEMBLY-103 > Project: Maven 2.x Assembly Plugin > Issue Type: New Feature > Affects Versions: 2.1 > Reporter: Richard van der Hoff > Attachments: maven-assembly-plugin-filters.patch, > maven-assembly-plugin-filters.v2.patch > > > A couple of other issues - http://jira.codehaus.org/browse/MASSEMBLY-90, > http://jira.codehaus.org/browse/MASSEMBLY-41 - have pointed out the need for > more powerful filtering of dependency sets in assembly descriptors. I wanted > to take this further, so as to allow quite powerful boolean expressions for > the description of dependencies. For example, the assembly extract below will > include anything which is not a "zip" in the org.apache.maven.* or > org.codehaus.* groups. > The attachment contains an implementation of this, and a couple of testcases > for the new functionality. > <dependencySet> > <filter> > <negate>false</negate> > <subfilters> > <filter> > <matchAll>false</matchAll> > <matchers> > <matcher> > <group>org.apache.maven.*</group> > </matcher> > <matcher> > <group>org.codehaus.*</group> > </matcher> > </matchers> > </filter> > </subfilters> > <matchers> > <matcher> > <type>zip</type> > </matcher> > </matchers> > </filter> > </dependencySet> -- 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