This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Description
The Import-Package OSGi directive in the Manifest.MF is generated using the (reasonable) "this version to next major version" algorithm. Unfortunately, Guava releases are all major version releases (15,16,17).
Import-Package: com.google.common.collect;version="[15.0,16)",com.google
.common.base;version="[15.0,16)",com.google.common.cache;version="[15.0
,16)",com.google.common.hash;version="[15.0,16)",com.google.common.net;
version="[15.0,16)"
The (current) latest release is 18.0.0 (bundle version). Given Guava's commitment to backward compatibility (esp. in their collections), it would be more reasonable to not version restrict the package imports for Guava. Or at least the open-ended, just "15.0.0".