See Project#addReference in Ant's source code for adding references (Ids).
--DD
-----Original Message----- From: Oliver Wulff [mailto:oliver.wulff@(protected)] Sent: Monday, March 17, 2003 3:08 AM To: ant-user@(protected) Subject: Create a fileset in my own task
Hi
I'd like to create a fileset and add it to the project in my custom task. Is this the right way of doing it:
LibFileSet fs = new LibFileSet(); fs.setProject( getProject() ); ...