I'm developing my own Eclipse application that implements a customized p2
update UI, so with respect to p2, I only need the .eclipse.equinox.p2.core.feature
feature, not the .eclipse.equinox.p2.user.ui
feature.
At the same time, I also need the .eclipse.platform
feature. but it includes the .eclipse.equinox.p2.user.ui
feature.
So, is there any way to exclude .eclipse.equinox.p2.user.ui
feature ?
The way I can think of is to not include the .eclipse.platform
feature, and define a feature that anizes the plugins I need, but doesn't include the .eclipse.equinox.p2.user.ui
feature. But it's a bit of a pain in the ass, and I need to carefully manage the plugins one by one against the . eclipse.platform
feature. Is there a better way? Thanks.