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 t
Use the Maven Dependency Plugin to show repositories for a specific build:
mvn dependency:list-repositories
or the full path, if you still use a very old version (<2.2)
mvn org.apache.maven.plugins:maven-dependency-plugin:2.6:list-repositories