Re: Good guide on how to do logging with Ant

2006-08-23 Thread John Davis
ard -D syntax or via property statement in the init target or a properties file just lookup the MailLogger. properties for things like the mail host, from, to, sucess, fail etc. "John Davis" <[EMAIL PROTECTED]To:

Good guide on how to do logging with Ant

2006-08-23 Thread John Davis
Where can I get an example on using logging? Is there a tutorial available? -- John F. Davis "JD" http://www.skink.net - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

example which shows how to use the External Javac Compiler

2006-08-19 Thread John Davis
Hello i am still trying to get the J9 compiler to work with Ant. Does anybody know where I can find an example using the external compiler setting of ant? -- John F. Davis "JD" http://www.skink.net - To unsubscribe, e-mail: [

Anybody use J9 with Ant? Here is what I have tried and I can't get it to work.

2006-08-17 Thread John Davis
Hello, I am trying to get ant to work with j9 using the command line for automated builds. I can get it to work using J2SE, but I have some code which must be built using J9 for an embedded setup. Here is my setup and what I have tried. j9 -version results in 1.3.0. I have the following env

how to call ant on optional subdirs?

2006-08-08 Thread John Davis
Hello Currently I have a top-level build.xml file which calls ant on subdirs. It looks like something like this: ... I would like to change the xml so it only builds available directories. In other words, if a developer uses this build file, he might not be interested in building th

telnet task missing a class

2006-07-27 Thread John Davis
Hello I am trying to run the telnet task from within an ant script. I get this error: java.lang.NoClassDeffoundError: org/apache/commons/net/telnet/Telnetclient However, I have add the net-commons jar file to my CLASSPATH. export CLASSPATH=$CLASSPATH:/usr/local/apache-ant-1.6.5/lib/ant-common

continue processing build after a failure?

2006-07-24 Thread John Davis
Hello I have a setup where the top-level build.xml calls build.xml files in subdirectories via the ant task. I would like the top-level build.xml file to continue calling other build.xml files in the subdirectories in case one directory fails to build. Is this possible? -- John F. Davis "JD" h

Re: ANT can not invoke a test script when called via parent directory build.xml file.

2006-06-19 Thread John Davis
We actually found the solution to be "resolveexutable=true" But, thanks anyway. On 6/19/06, Peter Reilly <[EMAIL PROTECTED]> wrote: Try or Peter On 6/19/06, John Davis <[EMAIL PROTECTED]> wrote: > > Hello > > This seems to be a simple setup, but I don&#

ANT can not invoke a test script when called via parent directory build.xml file.

2006-06-19 Thread John Davis
Hello This seems to be a simple setup, but I don't know why it does not work. My directory layout looks like this: src/build.xml <== Top level build file. src/psound/build.xml <== Sub project build file. src/psound/playsoundtest.ex <== sub project test s