So I have begun to edit an existing plugin. As such it has dependencies. I want to take this plugin and put it into another eclipse IDE (not my current one). This eclipse ID
The problem with using /dropins
is that it does not perform dependency resolution to find and include all required dependencies. Instead, you'll want to install via p2 (Eclipse's package installation infrastructure) - in Eclipse it's what you get when you select Help > Install New Software...
site.xml
file), and then use Help > Install New Software... to select the local update site and installing from that.The Eclipse Help Contents can explain more about all of this, but it's a pretty straightforward process.