如何检测pom.xml中不必要的依赖关系?

发布于 2025-01-10 19:07:58 字数 614 浏览 0 评论 0原文

我的 pom.xml 中有两个依赖项:

    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpcore</artifactId>
        <version>4.0-beta1</version>
    </dependency>
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpcore-nio</artifactId>
        <version>4.0-beta1</version>
    </dependency>

httpcore-nio 直接需要 httpcore 所以我不需要依赖项并且可以将其删除。

有没有一种方法可以自动删除或至少检测所有依赖项及其相应的依赖项树的不必要的依赖项?

I have two dependencies in my pom.xml:

    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpcore</artifactId>
        <version>4.0-beta1</version>
    </dependency>
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpcore-nio</artifactId>
        <version>4.0-beta1</version>
    </dependency>

httpcore-nio directly requiers httpcore so i do not need the dependency and could remove it.

Is there a way to remove or at least detect, unesseary dependencies automaticaly, for all dependencies, and their coressponding dependency tree?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文