Re: problem while creating jar file using ant task

2009-10-07 Thread Stefan Bodewig
On 2009-10-07, Edumudi Viswanath wrote: > basedir="${build}/classes" >includes="${build}/classes/a/b/c/d/e/**" > /> the includes pattern should be relative to your basedir. includes="a/b/c/d/e/**" BTW, the recommended approach is not to use basedir at all but rather a

problem while creating jar file using ant task

2009-10-07 Thread Edumudi Viswanath
Hi, I need to create jar file using ant task. While creating jar file, it should traverse to innermost directory & pick up all .class from from that folder. The code looks like below. Here, basedir contains "${build}/classes". Classes folder contains different folders and they contain