Reputation: 11
I just started developing a project in Spring MVC and i want to know how important Maven is.
Upvotes: 0
Views: 1002
Reputation: 25
Getting started with maven only takes about 10 minutes. Reasons why you should learn maven:
test
, package
which make your work more efficientThe most important thing about it at the beginning is that you don't need to worry about setting up your project by adding dependencies, maven does it for you automatically.
Read this spring guide for building with maven
Any other guides in this section for spring boot has the same mechanism
Upvotes: 0
Reputation: 2203
The following are the key features of Maven :
Upvotes: 1