Export-Package Manifest entry missing a Package

Issue #89 resolved
Michael Mansell created an issue

It's really nice that this project has the OSGi headers added. Unfortunately, it's missing one of the packages, specifically the com.nimbusds.jwt package. A simple change in the pom.xml will fix this problem:

<Export-Package>com.nimbusds.jose.*</Export-Package>

should be

<Export-Package>com.nimbusds.jose.*,com.nimbusds.jwt</Export-Package>

Unfortunately, without this change, not all parts of this library can't be used in an OSGi container. In my specific case, I'm also using the OAuth library, which relies on the JWT package.

Comments (1)

  1. Vladimir Dzhuvinov

    Thank you for spotting this issue. The fix will be pushed with the next release scheduled at the end of this week.

    ~ Vladimir

  2. Log in to comment