I\'m trying to use com.google.common.base.Splitter as follows
Iterable segs = Splitter.on(\"/\").split(\"one/two/three/four/five\");
for (Stri
For me this happens when you have a dependency which depends on an earlier version of Guava, and this dependency is listed first. Guava will be resolved at the place it was found first and ignore the rest.
The fix is to add the dependency on guava first, but careful that it does not break other projects which use guava