Support wildcards for artifact id in filter
-------------------------------------------

                 Key: MSHADE-69
                 URL: http://jira.codehaus.org/browse/MSHADE-69
             Project: Maven 2.x Shade Plugin
          Issue Type: Improvement
    Affects Versions: 1.2.2
            Reporter: Benjamin Bentmann


Imagine you want to exclude all signature related files for your dependencies 
while shading. This is currently cumbersome as one has to specify one 
{{<filter>}} for each dependency. Something like
{code:xml}
<filter>
  <artifact>*:*</artifact>
  <excludes>
    <exclude>META-INF/*.SF</exclude>
    <exclude>META-INF/*.DSA</exclude>
    <exclude>META-INF/*.RSA</exclude>
  </excludes>
</filter>
{code}
scales better.

-- 
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

        

Reply via email to