DevOps / Maven Interview questions II
Difference between repository and dependency in Maven.
Repository is a collection of artifacts (eg: jars). You can think of it as a mere storage / cache of various artifacts.
Dependency is a situation where your project dependent on another artifact to perform its task. (For example., compile, run, unit test etc.)
More Related questions...