You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ji...@codehaus.org on 2004/09/03 18:19:08 UTC

[jira] Updated: (MPSIMIAN-11) Includes/excludes pattern does not support multiple patterns

The following issue has been updated:

    Updater: Thomas Recloux (mailto:trecloux@norsys.fr)
       Date: Fri, 3 Sep 2004 12:17 PM
    Comment:
The patched pluggin.jelly file (from 1.4)
    Changes:
             Attachment changed to plugin.jelly
    ---------------------------------------------------------------------
For a full history of the issue, see:

  http://jira.codehaus.org/browse/MPSIMIAN-11?page=history

---------------------------------------------------------------------
View the issue:
  http://jira.codehaus.org/browse/MPSIMIAN-11

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: MPSIMIAN-11
    Summary: Includes/excludes pattern does not support multiple patterns
       Type: Bug

     Status: Unassigned
   Priority: Major

 Original Estimate: 10 minutes
 Time Spent: Unknown
  Remaining: 10 minutes

    Project: maven-simian-plugin

   Assignee: 
   Reporter: Thomas Recloux

    Created: Fri, 3 Sep 2004 12:16 PM
    Updated: Fri, 3 Sep 2004 12:17 PM
Environment: maven 1.0 maven-simian-plugin 1.4

Description:
The maven simian plugin seems to ignore includes/excludes pattern when they specify multiple patterns, this is because of the <ant:fileset> definition which is wrong.

it is :

<ant:fileset dir="${pom.build.sourceDirectory}">
    <ant:include name="${maven.simian.includes}"/>
    <ant:exclude name="${maven.simian.excludes}"/>

and shhould be :

<ant:fileset dir="${pom.build.sourceDirectory}" 
             excludes="${maven.simian.excludes}" 
             includes="${maven.simian.includes}" >


Il will update the issue with the plugin.jelly file updated.

Thanks, Thomas




---------------------------------------------------------------------
JIRA INFORMATION:
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

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org