What command can I use to ask Maven for a list of the default repositories that it searches for its dependencies? If no such command exists, where else may I look to find this default list?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
on the command line, execute
then, when prompted, enter
see http://maven.apache.org/plugins/maven-help-plugin/evaluate-mojo.html |
|||
|
|
|
You can output the effective pom with the command
There the default repositories are listed. |
|||
|
|
|
As a side-effect of displaying newer versions, the
|
||||
|
|
|
Use the Maven Dependency Plugin to show repositories for a specific build:
or the full path, if you still use a very old version (<2.2)
|
|||
|
|