Exclude META-INF/maven from traces sdk shaded dependencies#8096
Exclude META-INF/maven from traces sdk shaded dependencies#8096laurit wants to merge 1 commit intoopen-telemetry:mainfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8096 +/- ##
=========================================
Coverage 90.21% 90.22%
Complexity 7606 7606
=========================================
Files 841 841
Lines 22923 22923
Branches 2291 2291
=========================================
+ Hits 20680 20682 +2
+ Misses 1526 1524 -2
Partials 717 717 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Not really unexpected. Like in instrumentation repo for shading we first build a jar with shaded dependencies, then we extract it and in the module where we wish to include the shaded dependency we copy the directory that we extracted in the previous step. The consequence of that is that you may need to clean both the final target module and the module that does the shading to get the files removed. |
Ok so for this PR to be useful, would someone (you or I) need to go the extra step and clean the final target module? |
|
This is what I see locally when I check out the PR: |
|
😮 Something's up @trask. I just reran your exact command on my local copy of the branch, after being sure to delete the |
So far I have treated this as a local build issue. You could try |
|
Confirming that a clean build results in what Trask posted on my end as well. |

Related to open-telemetry/opentelemetry-java-instrumentation#16198 (comment)