ANT 1.6.5 : problem task to include files with path lengths exceeding 260 characters.

2007-12-16 Thread Davy Toch
rement for the JDK version on which ANT will run? Best regards, Davy Toch - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Some junit tasks fail if run in ant with forkmode="once"

2007-11-09 Thread Davy Toch
Can you show the error that is logged when you run the tests with forkmode="once"? Is it an OOM (OutOfMemory)? Paul Taylor schreef: Hi If I run my junit tasks from within ant using forkmode="once" a few of the tests fail - if I remove the forkmode="once" option they work. I cant really under

Re: jspc createProcess error

2007-08-13 Thread Davy Toch
nt instead :-). As a sidenote: if at the end of the failed command line you see a special character like: ...QUITY-TRUNK\src\ö then it's almost always related to shell environment size limitations. Best regards, Davy Toch edward pedersson schreef: Hi I am using Ant version 1.6.5 and I am

Quirky behaviour in how macrodef attribute values are resolved?

2007-08-09 Thread Davy Toch
Is this normal ANT behaviour, or should this be considered a bug for which I should open a bug report? Btw, I got this behaviour on ANT 1.6.5 and 1.7.0. Best regards, Davy Toch - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: Scoped variables in macrodefs using entity includes.

2005-09-13 Thread Davy Toch
Improved version (using ant-contrib). I suppose we'll have to wait for ANT 1.7 in order to have a 100% solution for scoped variables. build.xml : ]> &test-uid;.test : ${&test-uid;.test} macrodef.xml: ]> ¯odef1-uid;.test :

Scoped variables in macrodefs using entity includes.

2005-09-13 Thread Davy Toch
Just wanted to share our (temporary) solution we currently use to have scoped variables in macrodefs. Not ideal, but it currently works. build.xml: ]> &uid;.test : ${&uid;.test} macrodef.xml ]> &uid;.test : ${&uid;.test} --