I've used the Google Guava library for a half year now inside some small Eclipse RCP applications. Until now it's worked well with the older versions of Guava 11/12 provided inside the Eclipse Orbit p2 repositories.
In a new project I need to use Base64 encoding, but this feature only exists in Guava since version 14, which is not available inside Eclipse orbit.
I know that there is an alternative within the Apache commons, but I want to have minimal dependencies to other bundles.
I also know the bundle itself is OSGi compatible, but the classic RCP build based on features and it is a good practice to define a feature based target platform.
So does somebody know an (official) p2 repository that includes the latest guava version, or do I need to build my own feature based on the library?