ram
ram

Reputation: 251

maven plugin in eclipse

Will all the jars used by the project added automatically to build path of project in eclipse by adding the maven plugin to eclipse(m2eclipse)? If not added automatically what should be done to get the jars into build path?

Upvotes: 0

Views: 43

Answers (2)

Marcel Stör
Marcel Stör

Reputation: 23535

Will all the jars used by the project added automatically to build path of project in eclipse by adding the maven plugin to eclipse(m2eclipse)?

All the JARs that you define as dependencies in pom.xml will be added automatically to the Eclipse build path.

Upvotes: 1

user1541338
user1541338

Reputation: 29

If your project is set up as a Maven project in Eclipse, then yes. Also this assumes that your settings.xml file and pom.xml are correct.

If it is an exsisting non-maven project, you will need to use the context menus to convert it into a maven project before the dependencies are added.

Upvotes: 0

Related Questions