Re: Using mksant.jar in ant script

2009-03-12 Thread NR031
Hi, How to use the tag to Resynchronize working files with the repository? I am getting the following error message when I run this tag : synchronize: *** Cannot ask for user confirmation in batch mode; question was: "The working file c:\Project_Folder\dummy_name\build\META-INF\catalog.xml

RE: Classpath Wildcards

2009-03-12 Thread Murray, Mike
https://issues.apache.org/bugzilla/show_bug.cgi?id=46842 -Original Message- From: Paul King [mailto:pa...@asert.com.au] Sent: Thursday, March 12, 2009 6:16 AM To: user@ant.apache.org Subject: RE: Classpath Wildcards +1 for a bug report/enhancement requrest. I need this functionality too

RE: Classpath Wildcards

2009-03-12 Thread Paul King
+1 for a bug report/enhancement requrest. I need this functionality too for a customer stuck on windows. In any case, this is core Java functionality, ant should support it simply for the simplifications it brings in some use cases. Cheers, Paul. Murray, Mike wrote: > > Yes, it happens in the

Eclipse JDT compiler problem

2009-03-12 Thread Klas K
Hi We try to use the Eclipse JDT compiler in our CI-Building process and have discovered a problem that we do not find a good solution for. In our JAVAC task, we use the parameter "failonerror = false" and it seems like the JDT compiler automatically activates its own parameter "proceedOnError"

Re: Help... how to get a value from Java and pass it to another Target in ANT

2009-03-12 Thread Joe Schmetzer
Hi Shylendran, The task has the output and output outputproperty attributes. If you get your Java program to write the data you need to stdout, the text will appear there. Alternatively, you could get your Java program to write a properties file to the filesystem, and in then later use the Ant

Help... how to get a value from Java and pass it to another Target in ANT

2009-03-12 Thread Shylendran C
Hi All, Could you please help on this problem??? My requirement is In my Java file, I have a method and it will return a value as String. I have to get it from ANT script (build.xml) and after that I want to pass this to another *See below code - build.xml*