-------- Original Message -------- Subject: Re: Remove duplicate JAR file names from an XML file From: Michael Ludwig <[email protected]> To: Ant Users List <[email protected]> Date: 31.07.2010 19:19
> Looks like the <union> is not needed in this case as <pathconvert> > seems to imply removal of duplicates. yep, you're right :-) <pathconvert property="uniquejars" pathsep=","> <sort> <tokens> <propertyresource name="alljars"/> <stringtokenizer/> </tokens> </sort> </pathconvert> does the job. Regards, Gilbert --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
