gbif / gbif-common

Utility classes
Apache License 2.0
1 stars 1 forks source link

Fix #7 : Shade guava #8

Closed ansell closed 6 years ago

ansell commented 7 years ago

Guava regularly bumps its major version and includes method removals in the process of doing so, which fits with Semantic Versioning, but which limits reuse of libraries that externally depend on it. This removes that obstacle by shading/removing Guava as an external dependency, so it can be upgraded locally without affecting others.

Also updates Jackson, which is already shaded, Apache Commons libraries (do not need shading as they have a much longer maintenance cycle), and Slf4J (Does not need shading as it has a very reputable history in terms of backwards compatibility). Logback is only used as a test dependency, so bumping to keep up with latest bug fixes, but no effect on downstream projects.

Signed-off-by: Peter Ansell p_ansell@yahoo.com