我如何向 Maven 请求默认存储库的列表?

发布于 2024-09-02 00:45:09 字数 68 浏览 4 评论 0原文

我可以使用什么命令向 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

心病无药医 2024-09-09 00:45:09

在命令行上执行,

mvn help:evaluate

然后在出现提示时输入

${project.repositories}

see http: //maven.apache.org/plugins/maven-help-plugin/evaluate-mojo.html

on the command line, execute

mvn help:evaluate

then, when prompted, enter

${project.repositories}

see http://maven.apache.org/plugins/maven-help-plugin/evaluate-mojo.html

巴黎盛开的樱花 2024-09-09 00:45:09

您可以使用以下命令输出 有效的 pom

mvn help:effective-pom

那里列出了默认存储库。

You can output the effective pom with the command

mvn help:effective-pom

There the default repositories are listed.

铜锣湾横着走 2024-09-09 00:45:09

使用 Maven 依赖插件 显示存储库特定版本:

mvn dependency:list-repositories

或完整路径,如果您仍然使用非常旧的版本(<2.2)

mvn org.apache.maven.plugins:maven-dependency-plugin:2.6:list-repositories

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
旧故 2024-09-09 00:45:09

作为显示较新版本的副作用, < code>versions:display-dependency-updates 版本的目标Maven Plugin 还显示它搜索的存储库的名称。要显示较新的版本和存储库名称,请运行

mvn versions:display-dependency-updates

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

mvn versions:display-dependency-updates
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文