0

Maven Install downloads the dependencies from POM or update Project option does it ?

MrNolan
  • 154
  • 1
  • 4
  • 13

2 Answers2

0

In Eclipse, Maven install runs the following command on your project: mvn install

Which automatically updates any dependencies, then builds all modules and installs them in the local repository.

However, choosing "build project" in Eclipse automatically invokes Maven.

Sources:

Building a Project with Maven

Maven: Command to update repository after adding dependency to POM

Community
  • 1
  • 1
yogur
  • 810
  • 10
  • 19
0

Maven Update - This will bring the jars downloaded in the repository into the eclipse Maven Install - This will perform the Maven life cycle till install (Validate -> Compile -> test-> package ->verify -> Install)

MrNolan
  • 154
  • 1
  • 4
  • 13