添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

I am using Google Guava in my project.

I am explicitly specifying this version of a lib in one of downstream libraries:

<dependency>
    <groupId>com.google.guava</groupId>
    <artifactId>guava</artifactId>
    <version>19.0</version>
</dependency>

But when I use my lib in the project, it brings the wrong version of Guava:

[INFO] |  +- com.google.guava:guava:jar:28.2-android:compile
[INFO] |  |  +- com.google.guava:failureaccess:jar:1.0.1:compile
[INFO] |  |  +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO] |  |  +- com.google.code.findbugs:jsr305:jar:3.0.2:compile

I ran maven dependency:tree in verbose mode and I see:

[DEBUG]       com.google.guava:guava:jar:28.2-android:compile (version managed from 19.0)
[DEBUG]          com.google.guava:failureaccess:jar:1.0.1:compile
[DEBUG]          com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[DEBUG]          com.google.code.findbugs:jsr305:jar:3.0.2:compile
[DEBUG]          org.checkerframework:checker-compat-qual:jar:2.5.5:compile
[DEBUG]          com.google.errorprone:error_prone_annotations:jar:2.3.4:compile

What does version managed from mean? I do not have anywhere in my project version 28.2-android. How is it resolving to it?

Maven deps are exhaustive AFAIK; if the tree doesn't show the transitive dependency when run on the "top level" project I'm not sure what to tell you--it should. – Dave Newton Apr 13, 2021 at 1:51

The expression "version managed from" means that the version number was set in <dependencyManagement>.

This is often done in parent POMs. It can be specified directly, or also by a so-called BOM that is loaded with <scope>import</scope>.

How do I find the "offending" dependency? I was searching for the version of that jar in my entire local maven repo and there were no matches. – Ihor M. Apr 14, 2021 at 13:55

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.