Re: Need clarifications about the Core Ant Task (javac)

2007-04-06 Thread Martin Gainty
Hello Aviator-- 99% of ant builds configure their srcdir using FileSet selector.. http://ant.apache.org/manual/CoreTypes/fileset.html FileSet identifies 1 base folder , optional subfolders and optional file extensions The one folder fits all scenario Ive seen in the real world where everyone

I try to generate executable jar file from this Java open source program .

2007-04-06 Thread pierre8r
Hi, Eclipse 3.2 I try to generate executable jar file from this Java open source program under BSD licence : http://www.myjavaserver.com/~nonlinear/JSystemTrader/JSystemTrader.html Source code : http://www.myjavaserver.com/~nonlinear/JSystemTrader/JSystemTrader.zip There is a tutorial How to in

Re: Doubt in use ANT or not.

2007-04-06 Thread Borut Hadžialić
You don't need Ant for that. With java.io.File and other classes from the java.io. package you can make a much simpler solution. On 4/6/07, Marcos Vilela <[EMAIL PROTECTED]> wrote: Hello experts, I'm doing a program that export webservices. In execution time I have to move some crea

RE: Doubt in use ANT or not.

2007-04-06 Thread RADEMAKERS Tanguy
Hello Marcos, No, embedding ant in your program is overkill for something this simple. My 0.02$ /t >-Original Message- >From: Marcos Vilela [mailto:[EMAIL PROTECTED] >Sent: Friday, April 06, 2007 3:33 AM >To: user@ant.apache.org >Subject: Doubt in use ANT or not. > > >Hello experts, >

Re: Running Ant via Shell script

2007-04-06 Thread prashanth . l
u can call the ant task inside the shelll script. below is content of script file a.sh.. u need to just run script file ... as $a.sh ant all --> all is a task in build.xml a=`grep -ni "BUILD SUCCESSFUL" BuildLogger1.txt|wc -l` if [ $a -ne 0 ] then echo "Found" ant Mail_Success