InterviewSolution
Saved Bookmarks
| 1. |
What Is Central Repository? |
|
Answer» It is repository provided by Maven COMMUNITY. It contains a large number of commonly used libraries. When Maven does not FIND any dependency in LOCAL repository, it starts searching in central repository using following URL: http://repo1.maven.org/maven2/. It is repository provided by Maven community. It contains a large number of commonly used libraries. When Maven does not find any dependency in local repository, it starts searching in central repository using following URL: http://repo1.maven.org/maven2/. |
|