我如何向 Maven 请求默认存储库的列表?
我可以使用什么命令向 Maven 询问其搜索依赖项的默认存储库列表?如果不存在这样的命令,我还可以在哪里找到这个默认列表?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在命令行上执行,
然后在出现提示时输入
see http: //maven.apache.org/plugins/maven-help-plugin/evaluate-mojo.html
on the command line, execute
then, when prompted, enter
see http://maven.apache.org/plugins/maven-help-plugin/evaluate-mojo.html
您可以使用以下命令输出 有效的 pom
那里列出了默认存储库。
You can output the effective pom with the command
There the default repositories are listed.
使用 Maven 依赖插件 显示存储库特定版本:
或完整路径,如果您仍然使用非常旧的版本(<2.2)
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)
作为显示较新版本的副作用, < code>versions:display-dependency-updates 版本的目标Maven Plugin 还显示它搜索的存储库的名称。要显示较新的版本和存储库名称,请运行
As a side-effect of displaying newer versions, the
versions:display-dependency-updates
goal of the Versions Maven Plugin also displays the names of the repositories that it searches. To display the newer versions and the repository names, run