Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 762 Bytes

File metadata and controls

24 lines (15 loc) · 762 Bytes

Maven Interview Questions

What is Maven?

Maven is a project management tool. It is based on POM. POM stands for Project Object Model. The pom.xml file contains information of project and project configuration.

Give the command for installation of the JAR file in a local repository.

mvn install

What is a repository?

A repository is a directory or place where all the jars and pom.xml file are stored. There are 3 types of a repository in Maven:

  • Local Repository
  • Central Repository
  • Remote Repository