Maven突然下载maven-clover2-plugin
昨天,在使用 Maven 编译我们的 Web 应用程序时,它开始下载 maven-clover2-plugin 版本 3.1.3-SNAPSHOT
com.atlassian.maven.plugins:maven-clover2-plugin:3.1.3-SNAPSHOT
没有成功,因为该版本尚未添加到存储库中 (link)
我在调试模式下运行 Maven,以便获取依赖树,但我找不到下载它的原因。这是 Maven 日志的快照:
[DEBUG] Adding managed dependencies for org.apache.maven.plugins:maven-surefire-plugin
[DEBUG] org.apache.maven.surefire:surefire-api:jar:2.6
[DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.6
[DEBUG] org.apache.maven.surefire:maven-surefire-common:jar:2.6
[DEBUG] org.apache.maven:maven-core:jar:2.0.9
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5
[DEBUG] maven-clover2-plugin: resolved to version 3.1.3-SNAPSHOT from local repository
你知道哪个库或插件依赖于 maven-clover2-plugin:3.1.3 吗?谢谢
Yesterday, while compiling our web application using Maven, it started downloading the maven-clover2-plugin version 3.1.3-SNAPSHOT
com.atlassian.maven.plugins:maven-clover2-plugin:3.1.3-SNAPSHOT
Without success because this version is not yet added to the repository (link)
I ran Maven in debug mode in order to get the dependency tree, but I couldn't find why it is downloaded. Here's a snapshot of Maven logs:
[DEBUG] Adding managed dependencies for org.apache.maven.plugins:maven-surefire-plugin
[DEBUG] org.apache.maven.surefire:surefire-api:jar:2.6
[DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.6
[DEBUG] org.apache.maven.surefire:maven-surefire-common:jar:2.6
[DEBUG] org.apache.maven:maven-core:jar:2.0.9
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5
[DEBUG] maven-clover2-plugin: resolved to version 3.1.3-SNAPSHOT from local repository
Do you know which library or plugin is dependent maven-clover2-plugin:3.1.3? Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需执行
mvn dependency:tree
即可找出它来自哪里just do
mvn dependency:tree
to figure out where it came from