Preven bndtools from erroneously adding "org.antlr.v4.gui" to the Import-Package header#3672
Closed
Preven bndtools from erroneously adding "org.antlr.v4.gui" to the Import-Package header#3672
Conversation
…ort-Package header Signed-off-by: Richard Begg <richard.begg@cybercx.com.au>
Contributor
|
Ah, nice hack. Wouldn't it be better to have the import as optional (as in #3675 )? |
Author
|
@rovarga Your fix is probably better. |
Member
|
Closed in favor of the other |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Since a recent update of the version of maven-bundle-plugin used when building the java runtime, the resulting jar file fails to load in OSGI servers due to an unsatisfied package dependency:
Unable to resolve org.antlr.antlr4-runtime/4.10.1: missing requirement [org.antlr.antlr4-runtime/4.10.1] osgi.wiring.package; filter:="(osgi.wiring.package=org.antlr.v4.gui)"The cause of this is an erroneous reference to
org.antlr.v4.guiin the Import-Package header in MANIFEST.MF.It appears that newer versions of bndtools are a little to good at discovering class usage, and are detecting the static string reference in the
Class.forName("org.antlr.v4.gui.TestRig")call in TestRig.java.This commit obscures the class name a bit to prevent bndtools from finding it at compile-time.