Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is meant by the term ‘Dependencies and Repositories’ in Maven?
Home
Maven - Coalescing Pipeline
What is meant by the term ‘Dependencies and Repositories’ in Maven?
0
votes
asked
Sep 1, 2023
in
Maven - Coalescing Pipeline
by
JackTerrance
What is meant by the term ‘Dependencies and Repositories’ in Maven?
maven-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 1, 2023
by
JackTerrance
Dependencies refer to the Java libraries that are needed for the project. Repositories refer to the directories of packaged JAR files.
If the dependencies are not present in your local repository; then Maven downloads them from a central repository and stores them in the local repository.
...