Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.0
-
Component/s: None
-
Labels:None
-
Environment:ant1.7alpha
Description
The artifact tasks create path, which feeds in to things like <javac> and <java>. But not into <copy>, <zip>, etc, etc. If the task could take a fileset ID and create a fileset on demand, that would simplify integration with the rest of the ant system.
1. |
Flattened fileset reference | |
|
Unassigned |
is a filelist sufficient?
If you want a fileset, can you recommend how these are usually constructed?
I've implemented it like so:
fileSet.setDir( localRepository.getLocation() );
// for each dependency
fileSet.createInclude().setName( filename );
ie, not flattened. If you'd prefer a filelist or something different, please reopen.