You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "John Casey (JIRA)" <ji...@codehaus.org> on 2007/03/28 19:06:11 UTC

[jira] Updated: (MASSEMBLY-103) More powerful includes/excludes stuff in DependencySets in descriptors

     [ http://jira.codehaus.org/browse/MASSEMBLY-103?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

John Casey updated MASSEMBLY-103:
---------------------------------

    Fix Version/s:     (was: 2.2)
                   2.2-beta-1

> 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
>         Assigned To: John Casey
>             Fix For: 2.2-beta-1
>
>         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