pom.xml id=latest poitns to old guava 15
See original GitHub issue <profile>
<id>latest</id>
<properties>
<guava.version>15.0</guava.version>
<javassist.version>3.19.0-GA</javassist.version>
I guess that should be at least guava 18.0.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:7
- Comments:5
Top Results From Across the Web
How do I tell Maven to use the latest version of a dependency?
As Tim's answer points out, the maven-versions-plugin is a handy tool for updating dependency versions, particularly the versions:use-latest-versions and ...
Read more >Unnecessary-looking dependencies · Issue #2824 - GitHub
New in Release 22 are a bunch of Maven dependencies that look like they should be compile-only, but are now required at runtime....
Read more >Is it possible to make Guava work on Java 8 and Wildfly?
This ServiceManager class belongs to Google Guava. I have tried Guava 17, 16 and 15 and the problem still persists. Does anybody know...
Read more >Overriding Dependency Versions and Using Version Ranges ...
Get step-by-step guidance on managing dependencies in Maven: declare dependencies, overriding dependency versions, and using version ranges.
Read more >Maven Getting Started Guide
First, you will notice that a directory named my-app has been created for the new project, and this directory contains a file named...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I guess the best could be the last one :
<guava.version>19.0</guava.version>
I have cloned the repository, updated POM to use latest version of every library, and the code works.