-
Notifications
You must be signed in to change notification settings - Fork 193
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
remove stale bundle dependencies #1470
remove stale bundle dependencies #1470
Conversation
@@ -9,9 +9,7 @@ Bundle-Vendor: %Plugin.providerName | |||
Bundle-Localization: plugin | |||
Export-Package: org.eclipse.ui.internal;x-internal:=true | |||
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.29.0,4.0.0)", | |||
org.eclipse.swt;bundle-version="[3.124.0,4.0.0)";visibility:=reexport, |
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.
Reexports can not be removed even if they are unused
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.
Thanks for the review. reverted the SWT
entry that has the reexport visibility. please have a look.
btw I was using the PDE
tool to clean up the dependencies. Do you think the tool needs to care about the visibility attribute?
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.
It should have an option to keep such entries, in general one can remove, but for eclipse platform it would be an API break, so if you can enhance/improve it it would be great.
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.
org.eclipse.core.expressions
extension point is used in this bundle, so it can't be removed from dependencies
See my comment above, closing |
identified by
organise manifest
tool from PDE.