Re: project.createTask() not working with ant-1.8.2

2011-02-15 Thread bool
>> You shouldn't create a new Project object Is there any reason? It was working perfectly fine with 1.7.1 version -- View this message in context: http://ant.1045680.n5.nabble.com/project-createTask-not-working-with-ant-1-8-2-tp3385716p3386108.html Sent from the Ant - Users mailing list archiv

Re: project.createTask() not working with ant-1.8.2

2011-02-15 Thread bool
Also we see failures when we donot have "force" attribute set for overriding read only files. So we should be using 1.8.2 version only right as this feature is present only in this version.??? -- View this message in context: http://ant.1045680.n5.nabble.com/project-createTask-not-working-wi

project.createTask() not working with ant-1.8.2

2011-02-15 Thread bool
createTask() method is throwing the following error with ant-1.8.2 while it works perfectly with Ant 1.7.1. import org.apache.tools.ant.taskdefs.Delete; Delete delete = (Delete) myProject.createTask("Delete"); jar:file:/myant/ant-1.8.2/lib/ant.jar!/org/apache/tools/ant/antlib.xml:37: Problem:

Re: subant task scans .svn folders

2010-06-09 Thread bool
Stefan Bodewig wrote: > > On 2010-06-09, bool wrote: > >> Michael Ludwig-6 wrote: > >>> Maybe worth trying with 1.8.1. > >> Just tried this, but found that .svn folders are being scanned and >> opened. > > In general, this shouldn't hap

Re: subant task scans .svn folders

2010-06-09 Thread bool
Michael Ludwig-6 wrote: > > bool schrieb am 09.06.2010 um 04:37 (-0700): >> I am using the following build.xml using subant task. After executing >> ant find_java on console, I see that when I do "truss -p > java process>" I see .svn folders being scanned and

subant task scans .svn folders

2010-06-09 Thread bool
I am using the following build.xml using subant task. After executing ant find_java on console, I see that when I do "truss -p " I see .svn folders being scanned and opened by ant. Is this expected? How can I prevent .svn folders from getting scanned and opened. I am using ant1.7.1 ===