vote up 0 vote down star
1

What are some methods of utilising Eclipse for Dependency Management?

flag

3 Answers

vote up 10 vote down check

I really like the The Maven Integration for Eclipse (m2eclipse, Eclipse m2e). I use it purely for the dependency management feature. It's great not having to go out and download a bunch of new jars new each time I set up a project.

link|flag
vote up 2 vote down

A simpler way to go is the Maven Eclipse plugin (as opposed to a Maven plugin for Eclipse). It's simply a maven plugin that generates the .project and .classpath file based on the contents of the pom, you just run mvn eclipse:eclipse and you're done. It uses a classpath variable in Eclipse to locate the local maven repo.

I personally prefer this approach most of the time because you have more control over when the maven plugin updates are done. It's also one less Eclipse plugin to deal with. The GUI features of the m2eclipse plugin in the latest version is pretty nice, though.

There's also an alternative to the m2eclipse plugin called Q4E, now called Eclipse IAM.

link|flag
vote up 1 vote down

Another option is ivy. Ivy has eclipse integration as well.

A comparison of maven and ivy can be found here: http://ant.apache.org/ivy/m2comparison.html

link|flag

Your Answer

Get an OpenID
or

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