如何检测pom.xml中不必要的依赖关系?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论