Re: JAVA_HOME to be changed dynamically

2006-07-17 Thread 1800 tbsfunny
nt tested on 1.6). Jan >-Ursprüngliche Nachricht- >Von: 1800 tbsfunny [mailto:[EMAIL PROTECTED] >Gesendet: Freitag, 7. Juli 2006 21:21 >An: Ant Users List >Betreff: Re: JAVA_HOME to be changed dynamically > >Does Junit support running with different JDKs? > >O

Re: JAVA_HOME to be changed dynamically

2006-07-07 Thread 1800 tbsfunny
s Ant is already running... But and support using another JDK for their work. Jan >-Ursprüngliche Nachricht- >Von: 1800 tbsfunny [mailto:[EMAIL PROTECTED] >Gesendet: Mittwoch, 5. Juli 2006 16:38 >An: Ant Users List >Betreff: JAVA_HOME to be changed dynamically >

JAVA_HOME to be changed dynamically

2006-07-05 Thread 1800 tbsfunny
I set JAVA_HOME=c:\jdk1.5 before running ant. At some point inside the an ant target I want to change JAVA_HOME=c:\jdk1.4. And run the remaining tests with jdk1.4. Can I do this? Thanks, -Jed

Re: file encoding to UTF-8

2006-06-15 Thread 1800 tbsfunny
g=UTF-8" ant Regards, Antoine Original-Nachricht Datum: Wed, 14 Jun 2006 11:07:57 -0400 Von: 1800 tbsfunny <[EMAIL PROTECTED]> An: Ant Users List Betreff: file encoding to UTF-8 > I am trying to set my ant system property "file.encoding" to UTF-8. > Cur

file encoding to UTF-8

2006-06-14 Thread 1800 tbsfunny
I am trying to set my ant system property "file.encoding" to UTF-8. Currently it is set to Cp1252, which I think is the Windows default. How can I modify the ant system property "file.encoding"? -Jed

Re: Methods inside Java ant task

2006-06-08 Thread 1800 tbsfunny
method you want to run. May be add a main method to util.runtime.TestSingleton. The only method which can be invoked by is static void main (String [] args). Regards, Antoine > Original-Nachricht > Datum: Thu, 8 Jun 2006 12:54:04 -0400 > Von: 1800 tbsfunny <[EMAI

Methods inside Java ant task

2006-06-08 Thread 1800 tbsfunny
Hi Ant gurus, I am trying to write an Ant task that looks something like that - This fails on me because we cannot run methods directly. Any suggesstions?

Re: Question about the Depends property

2006-05-26 Thread 1800 tbsfunny
nks. On 5/26/06, Ninju Bohra <[EMAIL PROTECTED]> wrote: You can run multiple targets in sequence from the command line by space delimiting the target names. Try: prompt> ant B A Enjoy, Ninju - Original Message ---- From: 1800 tbsfunny <[EMAIL PROTECTED]> To: user@a

Question about the Depends property

2006-05-26 Thread 1800 tbsfunny
In a given target I can call depends to point to which target should be run before this. Eg. Now if I call prompt> ant B How do I make A run after this? Thanks.