Customizing AntRunner output - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T04:27:20Z http://stackoverflow.com/feeds/question/148641 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/148641/customizing-antrunner-output 1 Customizing AntRunner output JesperE 2008-09-29T13:29:20Z 2008-09-29T14:29:05Z <p>I'm using Eclipse's AntRunner to build a set of plugins, but I'm having trouble in configuring the logging behavior. Specifically, I'd like AntRunner not to display empty tasks. Anybody knows how to do this?</p> http://stackoverflow.com/questions/148641/customizing-antrunner-output/148911#148911 1 Answer by JesperE for Customizing AntRunner output JesperE 2008-09-29T14:29:05Z 2008-09-29T14:29:05Z <p>The solution is to pass the following JVM options:</p> <pre><code>java -jar ... -logger org.apache.tools.ant.NoBannerLogger </code></pre>