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 IDE will not have the dependent plugin jars installed. Right now I am using the droppins folder, however this does not reach out and install the dependencies I need. So what is the best way for me to install this plugin into another eclipse IDE? And as a complete package/simple onetime step.
Share
The problem with using
/dropinsis 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.xmlfile), 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.