There used to be a way to do this, but I can no longer find this in Eclipse 3.4.1 installation I have. Does anyone know how to do this?
|
|
You should add your plugins in ECLIPSE_HOME/dropins. If you want to defined common plugins, use bundle pools (also introduced here)
You can also use an own extra dropins folder: simply add a parameter into
This extra dropins location can be used from more then one Eclipse installations - so you can use it as a shared dropins (watched directory). For Bundle Pool, you have here a step by step procedure: To better address your issue, you might find interesting the following article: p2: how I install plugins in extension locations (from the Eclipse and Java Blog by Michael Scharf blog)
(Note: p2 is the "new" way to manage plugins, links is the "old" way to reference plugins outside the eclipse installation directory)
|
|||||||||||
|
|
Not sure if this is what you are seeking, but if you manually obtain plugins (not via the loader, just as jars), you can use the dropins mechanism. Go to ECLIPSE_HOME/dropins Create a directory named "SomeNameForFunctionality" Create a subdirectory named "eclipse" underneath Create subdirectories named "features" and "plugins" underneath "Eclipse" Move the plugins and feature jars to the corresponding subdirectories. Restart Eclipse and make sure it takes a few more seconds to load. Your plugin should still be there. |
|||
|
|
The Dropins folder is a good solution if you install plugins manually. If you are installing plugins through the update manager, you cannot select the install location for your plugins through the UI. Not anymore. BTW, if you like sharing plugins among several Eclipse installations, you can create a Link file, drop it in the Dropins folder and it works just the same, no need to modify the INI. A Link file is a plain text file, which ends with .link extension, and has one line in it: |
|||
|
|
|
I just wasted an hour trying to deploy a plugin in the dropins/ directory in eclipse 3.7 and thought I'd share. It turns out the preview files generated by MacOS X (starting ._ e.g. .com.example.myplugin.jar) were interfering with the P2 auto-detection and causing it to fail before it reached my plugin. I did a search for all . files and deleted them and the plugin was finally loaded |
|||
|
|
