which one is better? Ant-IVY or Maven?.

link|improve this question

71% accept rate
It all depends on your needs. Both products can be used with success. – Andrey Adamovich Apr 19 '11 at 15:05
this is hardly a question to which you can give a objectively correct answer. please read the faq at stackoverflow.com/faq – blubb Apr 19 '11 at 15:06
3  
Define "better" first. – Péter Török Apr 19 '11 at 15:08
feedback

closed as not constructive by David, eldarerathis, Jeff Foster, belisarius, Robert Harvey Apr 19 '11 at 15:44

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

That really depends. From my experience I would suggest to use

  • Maven for new projects - it is simply easier and less to worry about
  • Ivy for old projects which have complicated and established build process in ANT - the conversion to maven may be real pain

It also serves slightly different purposes. Ivy is dependency management only and adds basically just some ant tasks (you are still in ANT) where Maven does lots of extra stuff (packaging, deploying, site generation etc.).

link|improve this answer
feedback

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