Read OSGI bundle version

1.4k Views Asked by At

I'm interested how I can read OSGI bundle jar file version with Java before I deploy it? Is there a way to extract this data before deploying it?

2

There are 2 best solutions below

1
On

You can do it with standard Java:

JarFile jarFile = new JarFile("myjar.jar");
Manifest manifest = jarFile.getManifest();
Attributes mainAttributes = manifest.getMainAttributes();
String bundleVersion = (String) mainAttributes.get(Constants.BUNDLE_VERSION);

Constants class comes from org.osgi.framework package.

0
On

If you just want to get the version it might be completely overkill, but in general a really good way to read all kind of bundle data is to use bnd. Many tools are built on top of bnd, but it's easy to use as a library as well.