Re: two listeners but only different logging

2010-10-22 Thread Stefan Bodewig
On 2010-10-22, ciba wrote: > I am using two listeners : > net.sf.antcontrib.perf.AntPerformanceListener > org.apache.tools.ant.listener.Log4jListener > I want all print statements other than 'performance statistics' to be > printed on the console. so that means i cannot use the -logFile option.

Re: Something like "make install" in Ant

2010-10-22 Thread Stefan Bodewig
On 2010-10-22, Gökhan Özbulak wrote: > I wonder if ant supports something like "make install" in make of GNU. I > examined various build.xml files from various well known projects like > Apache Tomcat etc., but couldn't see anything about installing files built > into somewhere like /usr/bin in GN

Re: Something like "make install" in Ant

2010-10-22 Thread Stephen Connolly
Oh how I look forward to rthe fun if you ever venture over to ask the same of Maven! [Maven being "opinionated" software has the opinion that installation of software onto your system is the responsibility of a software installer and not the responsibility of Maven Core] Apache ANT does not dictat

Something like "make install" in Ant

2010-10-22 Thread Gökhan Özbulak
Hi, I wonder if ant supports something like "make install" in make of GNU. I examined various build.xml files from various well known projects like Apache Tomcat etc., but couldn't see anything about installing files built into somewhere like /usr/bin in GNU/Linux distros. If there is no such tar

RE: two listeners but only different logging

2010-10-22 Thread Martin Gainty
AntPerformanceListener handles log events for ANT events here are the impelemented methods public class net.sf.antcontrib.perf.AntPerformanceListener extends java.lang.Obj ect implements org.apache.tools.ant.BuildListener{ public net.sf.antcontrib.perf.AntPerformanceListener(); public v

two listeners but only different logging

2010-10-22 Thread ciba
Hi, I am using two listeners : net.sf.antcontrib.perf.AntPerformanceListener org.apache.tools.ant.listener.Log4jListener I want all print statements other than 'performance statistics' to be printed on the console. so that means i cannot use the -logFile option. How can we implement this differ