AW: Force PATH env variable - Enabling .DLL loading

2006-01-10 Thread Jan.Materne
>If a .dll depends on another .dll, then it must be found in >the system-specific, on Windows the Path (on *nix, >LD_LIBRARY_PATH usually). So to be platform "independend" you use both? Jan - To unsubscribe, e-mail: [

Re: taskdef with classpathref not working

2006-01-10 Thread Stefan Bodewig
On Tue, 10 Jan 2006, Michael Alexander <[EMAIL PROTECTED]> wrote: > I want to be able to define task's that use either the axis-1_1 or > the axis-1_2_1 jars depending upon the value of a property. The > intent is to avoid having users explicitly set their CLASSPATH > before invoking the build. I

Re: running junit from ant

2006-01-10 Thread Stefan Bodewig
On Tue, 10 Jan 2006, Lothar Krenzien <[EMAIL PROTECTED]> wrote: > When I run a JUnit test suite from ant I would like to see at least > the result of the tests. At the moment only errors are logged. That's what the brief formatter does. But you should be getting the summary given your task. It

Re: scope of types

2006-01-10 Thread Jeffrey E Care
I'm sorry, is there a question in there, or are you making a statement? -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "shreedhar natarajan" <[EMAIL PROTECTED]> wrote on 01/10/2006 07:46:21 PM: > Hi all, > > Does n't ant sup

scope of types

2006-01-10 Thread shreedhar natarajan
Hi all, Does n't ant support type scope. i.e. I define property in one target and access it another target. Ant allows this. So that this mean everything defined is project scope. Thanks, Shreedhar - To unsubscribe, e-mail: [

Property not resolving

2006-01-10 Thread shreedhar natarajan
Hi all, I have a strange problem. I have a filelist defined in say filelist.xml and I have a main build.xml that imports this filelist.xml. filelist refers to 2 properties. for eg.

taskdef with classpathref not working

2006-01-10 Thread Michael Alexander
I want to be able to define task's that use either the axis-1_1 or the axis-1_2_1 jars depending upon the value of a property. The intent is to avoid having users explicitly set their CLASSPATH before invoking the build. I have found examples such as the following that appear to be exactly what I

Re: Force PATH env variable - Enabling .DLL loading

2006-01-10 Thread Dominique Devienne
> >As I need to deploy the app on numerous machines, I'd rather > >avoid to set the PATH each time. > >Any idea to set the environment within ant commandline or even > >better within the ant file before I call the java task? > > try setting the java.library.path system property. There are 2 way

AW: Help for New User

2006-01-10 Thread Jan.Materne
I dont know any other "site". But there are many articles outside. Just search for "Apache Ant" and maybe "tutorial" or "article". But you can also start with the manual. E.g. with the HelloWorld tutorial at "Developing with Ant | Hello World with Ant" [1] Jan [1] http://ant.apache.org/manual/

Help for New User

2006-01-10 Thread Harshal Chavda
Hello Fellow Ant Users, I have just joined this list as the subject suggests.I would like to know what all things I can do with Ant.If there are other sites apart from Apache which can be good for learning please specify. Awaiting your help. Bye,

Re: running external batch from ant

2006-01-10 Thread Ninju Bohra
In addition to the spawn="true" attribute (which is needed) you want the external process to be in its own window? Assuming you are on a Windows OS you will need to actually launch (via the task) the following This should start a

Re: Reading properties

2006-01-10 Thread Neil Benn
Hello, I had a simialr problem to this, if you cannot switch \ to / (I had a problem that I needed to replace a path whihc became a commadn line). I ended up having to put four \ to replace one \. This ended up being two for java and two for a regex although you are not using regexs -

Re: running external batch from ant

2006-01-10 Thread Sujeet Banerjee
Hello Lothar Did you try the with the exec task? Regards -- Sujeet Banerjee Member of Technical Staff Persistent Systems Pvt. Ltd. Visit us at www.persistentsys.com -- "

AW: running external batch from ant

2006-01-10 Thread Jan.Materne
I would try the spawn and fork attribute ... see also http://ant.apache.org/faq.html#batch-shell-execute Jan >-Ursprüngliche Nachricht- >Von: Lothar Krenzien [mailto:[EMAIL PROTECTED] >Gesendet: Dienstag, 10. Januar 2006 11:25 >An: user@ant.apache.org >Betreff: running external batch f

Re: running external batch from ant

2006-01-10 Thread VGupta
lothar - try looking at the parallel task in ant. i have been using the same for stuff like this . do get back to me if you have some problem in using the same. Vipul Lothar Krenzien <[EMAIL PROTECTED]> wrote: Hi there, I would like to run an external batch file from ant. Of cou

running external batch from ant

2006-01-10 Thread Lothar Krenzien
Hi there, I would like to run an external batch file from ant. Of course no problem. But I notified that ant don't proceed until the batch execution finished. Is it possible to start the batch, let the output window open and proceed with ant ? Thanks, Lothar