Message:

   The following issue has been re-assigned.

   Assignee: Timothy Bennett (mailto:[EMAIL PROTECTED])
---------------------------------------------------------------------
View the issue:
  http://issues.apache.org/jira/browse/MODEL-6

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: MODEL-6
    Summary: Improve the handling of filesets in Merlin's classpath directive
       Type: Improvement

     Status: Open
   Priority: Minor

    Project: Avalon Composition
 Components: 
             Architecture
             Implementation
             Runtime

   Assignee: Timothy Bennett
   Reporter: Timothy Bennett

    Created: Sat, 10 Apr 2004 12:24 AM
    Updated: Sat, 10 Apr 2004 12:24 AM

Description:
Basically in a <classloader><classpath> we can declare  
   
  <fileset dir="wherever"> 
     <include name="abc.jar"/> 
     <include name="xyz.jar"> 
   </include> 
  </fileset> 
 
There is no current wilcard support - e.g:
  <fileset dir="lib"/> 
 
Should include all files in the directory.

  <fileset dir="lib"> 
    <include name="*.jar"/> 
  </fileset> 
 
should be possible and even better is: 
 
  <fileset dir="lib"> 
     <include name="abc*.jar"/> 
     <exclude name="xyz.jar/> 
   </fileset>

Also, we should attempt to implement as much of the Ant-like fileset patterns like:

 <fileset dir="lib">
    <include name="**/*.jar">
 </fileset>
 
which would include all jars in the lib dir and all its subdirectories?

These are some of the main use cases, and the ones that will be addressed first, but 
are by no means an exhaustive set of use cases.


---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to