Maven or Ivy for Managing Dependencies from Ant? - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T14:40:43Zhttp://stackoverflow.com/feeds/question/318804http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318804/maven-or-ivy-for-managing-dependencies-from-ant6Maven or Ivy for Managing Dependencies from Ant?Lokihttp://stackoverflow.com/users/390572008-11-25T20:49:57Z2010-01-18T10:02:15Z
<p>Hi, I was wondering about the best way to manage projects dependencies from ant. What are the pros and cons of the Maven Ant task and of Ivy?</p>
http://stackoverflow.com/questions/318804/maven-or-ivy-for-managing-dependencies-from-ant/318852#3188521Answer by David M. Karr for Maven or Ivy for Managing Dependencies from Ant?David M. Karrhttp://stackoverflow.com/users/105082008-11-25T21:02:49Z2008-11-25T21:02:49Z<p>I know that one advantage of Ivy is that it can use different kinds of repositories. Maven is typically very rigid in the format of the repository it will use. That's all I know.</p>
http://stackoverflow.com/questions/318804/maven-or-ivy-for-managing-dependencies-from-ant/318882#31888214Answer by Chris for Maven or Ivy for Managing Dependencies from Ant?Chrishttp://stackoverflow.com/users/84152008-11-25T21:11:42Z2008-11-25T21:11:42Z<p>Since what you're wanting to do is add dependency management to an existing Ant project, that's precisely what ivy's designed to do. Dependency management is a big part of maven, but far from all of it. Maven is more of a project-oriented tool that does several other things in addition to dependencies. It would be worth considering if you were planning to migrate to maven and use additional maven features as well, but it's a bit much if all you'd use it for is to spin off ant.</p>
<p>Your type of dependencies and your expectations for how they behave will also make a difference. Pulling third-party dependencies is almost trivial in maven, while ivy excels in rebuilding your own dependent components. In either case, the tools won't provide decent build, versioning, and repository <em>policies</em>, those are still up to you and needed to get the configuration right.</p>
http://stackoverflow.com/questions/318804/maven-or-ivy-for-managing-dependencies-from-ant/599070#5990703Answer by RogerV for Maven or Ivy for Managing Dependencies from Ant?RogerVhttp://stackoverflow.com/users/480482009-03-01T01:50:09Z2009-03-01T01:50:09Z<p>If your long term goal is to migrate to using Maven to manage the entire build process (which one might intend to do for new greenfield projects), then I heartily recommend using Maven pom.xml files to manage dependencies on behalf of ant build.xml files. The end result is that both your greenfield projects and your legacy projects are then all using the same mechanism to manage dependencies. And it turns out Maven really does a better job of managing dependencies for ant build.xml files than does Ivy.</p>
<p>Prior to adopting Maven as our flagship build tool, I had a developer attempt to use Ivy in combination to existing ant build.xml files. This was most frustrating experience that very soon lead us to reject Ivy. We went ahead with an adoption of Maven. Our greenfield projects began to be built with the stock Maven approach, etc.</p>
<p>However, I went back to the ant legacy projects and started using the Maven ant task to define classpath definitions (and occasionally other ant property definitions pulled in from the pom.xml). This turned out to be a most superlative experience. The existing ant build.xml files need only be modified slightly to use Maven ant integration to define any classpath that were in use in the build.xml file. All dependencies required by the project became defined in an accompanying pom.xml file that gets processed by Maven via the ant task incorporated into the build.xml files.</p>
<p>Maven scopes can be used to fine tune classpath definitions such that one suitable for compiling, or running unit test, or for packaging, et al, can be established. Also, pretty much any element of something defined in the pom.xml file can be referenced as an ant property within the build.xml file.</p>
<p>Really with the the ant task for Maven there is no viable reason for Ivy to even exist.</p>
http://stackoverflow.com/questions/318804/maven-or-ivy-for-managing-dependencies-from-ant/832682#8326827Answer by kramer for Maven or Ivy for Managing Dependencies from Ant?kramerhttp://stackoverflow.com/users/02009-05-07T02:51:50Z2009-05-07T02:51:50Z<p>Ant + Ivy == A campground, where people use the facilities as needed
Maven == A resort, where you rely on someone else to provide services</p>
<p>Maven is easier for a team lacking build/integration experience, but when the team needs to diverge from Maven standards they will find themselves reaching for groovy, gradle, and the lack of solid documentation will become frustrating</p>
<p>Ant + Ivy will take longer to startup a project, but if the team has build/integration experience they can tailor the build system around they way they develop and release code. </p>
<p>In engineering... technology companies I always push for the campsite solution versus the resort.</p>
<p>It is amazing though that both Ant and Maven choose XML as their langauge to express build recipes with. The Java community is stuck on that XML...</p>
http://stackoverflow.com/questions/318804/maven-or-ivy-for-managing-dependencies-from-ant/2085158#20851580Answer by Peter Thomas for Maven or Ivy for Managing Dependencies from Ant?Peter Thomashttp://stackoverflow.com/users/1434752010-01-18T10:02:15Z2010-01-18T10:02:15Z<p>I think this blog post covers exactly what the OP is looking for:</p>
<p><a href="http://ptrthomas.wordpress.com/2009/03/08/why-you-should-use-the-maven-ant-tasks-instead-of-maven-or-ivy/" rel="nofollow">Why you should use the Maven Ant Tasks instead of Maven or Ivy</a></p>