查找存储依赖项的 Maven 存储库

发布于 2024-12-18 15:39:59 字数 163 浏览 2 评论 0原文

我正在开发一个包含多个公司远程 Maven 存储库的项目,每个存储库都托管数十个依赖项。整个项目使用数百个依赖项,我需要一种方法来快速确定依赖项存储在哪个远程存储库

Maven 是否提供了一种简单的方法来执行此操作,还是我需要自己搜索每个存储库的依赖项列表?

I'm working on a project with several corporate remote Maven repositories, each hosting many dozens of dependencies. The entire project uses hundreds of dependencies and I need a way to quickly determine which remote repository a dependency is stored on.

Does Maven provide an easy way to do this or do I need to search through each repository's dependency listing myself?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

此刻的回忆 2024-12-25 15:39:59

项目依赖关系报告包含信息你想要的。 快速生成此报告

mvn project-info-reports:dependencies

您可以使用并打开 target/site/dependency.html 文件 。查看此报告的最后一部分(依赖项存储库位置)以获取所需的信息。

此报告的示例位于此处

The project dependencies report has the information you want. You can quickly generate just this report using

mvn project-info-reports:dependencies

and open the target/site/dependencies.html file. Look at the last section in this report (dependency repository locations) for the info you want.

A sample of this report is here.

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