Tagged Questions

9
votes
6answers
1k views

Replacing build.xml with Build.java - using Java and the Ant libraries as a build system

I've grown disillusioned with Groovy based alternatives to Ant. AntBuilder doesn't work from within Eclipse, the Groovy plugin for Eclipse is disappointing, and Gradle just isn't ready yet. The Ant ...
2
votes
4answers
3k views

How can include multiple jars in the classpath using ant?

I have a bunch of .java files in a "src" folder that depend on three jars in a "lib" folder. I have the following build.xml file: <?xml version="1.0"?> <project name="MyProj" basedir="."> ...
1
vote
7answers
50 views

Java Build tool flexible enough to do conditional checks

I currently use Ant to build Java software. However, all development that I have done so far was not very complex. So, ant was sufficient for me. Recently, I have started working on a bit complex ...
1
vote
1answer
82 views

What's the pro and cons of fabric against ant?

I have been using ant to make a build tool for website deployment. I use Ant to glue different tools such as less-compiler, YUI-compressor, Google Closure Compiler and JSlint together. However, one ...
1
vote
1answer
110 views

Maven Security Concerns

Are there security concerns with using Maven? I use Ant today for my main project, but I do use Maven for my "samples" project where I write program spikes. I do like some parts of Maven, but have a ...
0
votes
3answers
105 views

Eclipse RCP Buildtool

I want to automate the Build Process of an existing RCP application with an own target platform. Now I can't decide between Ant and Maven ore maybe there is a better tool?! The tool should be easy to ...