0 votes
in DevOps by
Maven Repositories

1 Answer

0 votes
by

All the dependencies are held and maintained in a repository in Maven. These repositories are the directories of packaged jar files.

Whenever Maven searches for dependency addition, it looks at local repository followed by central repository, then the remote repository.

  • local repository refers to the repository on a developer's computer.

  • central repository is the one that Maven community provides.

  • remote repository could be one on the web server from where the dependencies can be downloaded.

Related questions

0 votes
asked Jul 23, 2020 in Maven - Coalescing Pipeline by rajeshsharma
0 votes
0 votes
asked Jul 23, 2020 in DevOps by Hodge
...