by @kodeazy

what is the use of Maven while building a Spring Application?

Home » java » what is the use of Maven while building a Spring Application?

In this blog we will discuss on why we use maven while working with Spring Boot like frame works.

Before understanding what is the use of maven we need to understand about dependency.

What is Dependency in Java?

Dependecies are components of software which are used by our project to perform certain tasks.

For Example

we use JDBC dependency to connect to database and perform CRUD operations.

What is the use of Maven?

  • In java to create a project we use dependencies
  • Most java projects rely on third party archive dependencies.
  • Above all each version of these dependencies rely on other dependencies.
  • To manage all these dependencies we use Maven.