-
Notifications
You must be signed in to change notification settings - Fork 714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing OSGi resolution issues caused by jdk.internal.vm.annotation #1247
Conversation
@reta thanks! can you verify that this doesn't recurse? ex the jars that depend on brave don't end up with the same problem. you can search for bnd files here or in console https://github.com/openzipkin/brave/find/master this was one reason I was wondering if this could be handled at the plugin level.. possibly we should raise a JIRA on it? wdyt |
@adriancole yes, sure, so far
I have checked also
Others require dedicated JARs but none of them failed because of |
super weird.. I wonder then what is causing the dep on |
@adriancole I found it, it is |
@reta cool. we can un-lambda that. great detective work! |
It is still strange, though... isn't it?.. There's no compile dep on okhttp from io.zipkin.brave:brave |
@adriancole that's correct, so if you disassemble it using
What is mysterious though ... I was able to reproduce it only once locally by building the |
Not exactly but in
(sorry, you are correct, there is no compile time dependency) |
opened luontola/retrolambda#160 actually I found the culprit... we also had one here in BaggagePropagation |
@reta I added a commit, that after you build openzipkin/zipkin-reporter-java#179 can verify if all clear? |
awesome, thanks a lot @adriancole , I think we can close this pull request |
nah can't close this as there's one here :D |
@adriancole the MANIFEST.MF (for |
@@ -129,7 +129,7 @@ | |||
<maven-failsafe-plugin.version>3.0.0-M4</maven-failsafe-plugin.version> | |||
<maven-invoker-plugin.version>3.2.1</maven-invoker-plugin.version> | |||
<maven-enforcer-plugin.version>3.0.0-M3</maven-enforcer-plugin.version> | |||
<maven-bundle-plugin.version>4.2.1</maven-bundle-plugin.version> | |||
<maven-bundle-plugin.version>5.1.1</maven-bundle-plugin.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
…nto fix.osgi.resolution
thanks.. I'll go ahead and ship this as don't want people pinned. |
Mind having a look? #1252 |
Addressed #1243, checked with 5.12.5-SNAPSHOT builds (local), the issue is gone. Thanks to @dkulp and @adriancole .