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 drawback for Ant is that the xml build file and task dependency is not quite human-readable and makes the update task a pain.

I stumbled on Fabric today and found the way it organizes tasks clear with pure abstract python code. I am considering using fabirc instead of ant for build tools.

I want to be careful for this move and need some suggestion about the pro and con of fabric against ant.

link|improve this question

72% accept rate
feedback

1 Answer

up vote 3 down vote accepted

actually fabric and ant don't compare, as they serve different purposes. ant is a build tool while fabric is a deployment tool. you've been using ant so I guess you know what it does.

fabric is used to deploy build artifacts (e.g. jar/war) to testing/production machines. fabric is indeed a neat python wrapper around ssh and the linux shell, so basically you can use it to run various commands, you can run commands that will eventually build your project, but I wouldn't recommend such approach. That's not the tool's purpose.

I agree ant's usage of xml is painful, it's hard to maintain big ant scripts.

If you're building a java (or any jvm language) project I would highly recommend gradle. It's a groovy based build automation tool. You have the power of a writing code for your custom build tasks, or/and using standard build tasks (compile->test->build->...) in addition it supports maven's dependency management.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.