Deploying a newly developed Eclipse Plugin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T11:30:11Z http://stackoverflow.com/feeds/question/266935 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/266935/deploying-a-newly-developed-eclipse-plugin 1 Deploying a newly developed Eclipse Plugin David Martin 2008-11-05T22:16:06Z 2009-01-14T16:03:40Z <p>I have written an Eclpise plugin (an Error Parser for the CDT), and it works just fine in the debugger version of eclipse. However I cannot for the life of me figure out how to install the plugin into eclipse. I can export the plugin as a jar file, and it seems to export without errors. I put the plugin jar file into eclipse\dropins and it is not loaded by eclipse. If I add it to the plugins directory, no luck. The features directory also seems to ignore my plugin.</p> <p>So I thought, OK, I'll try installing it through the GUI. So I browse to where the plugin archive is and add it as a local update site, but eclipse complains there is no plugin there.</p> <p>I'm frustrated. Please help.</p> http://stackoverflow.com/questions/266935/deploying-a-newly-developed-eclipse-plugin/267190#267190 0 Answer by David Martin for Deploying a newly developed Eclipse Plugin David Martin 2008-11-05T23:50:26Z 2008-11-05T23:50:26Z <p>No Idea What I did to screw up my eclipse install. But reinstalling eclipse and putting the plugin in dropins worked just fine!</p> http://stackoverflow.com/questions/266935/deploying-a-newly-developed-eclipse-plugin/443515#443515 2 Answer by Jordan Liggitt for Deploying a newly developed Eclipse Plugin Jordan Liggitt 2009-01-14T16:03:40Z 2009-01-14T16:03:40Z <p>Putting the plugin into the eclipse/plugins folder should work. If it doesn't, that usually means Eclipse has cached the plugins configuration for performance reasons. You can force Eclipse to rescan the plugins directory for changes by starting it with the <strong>-clean</strong> command-line argument.</p> <p>The typical deployment mechanism for Eclipse is to use features. A feature includes plugins (in your case, probably just one), and can be installed through the Eclipse update manager. To deploy your plugin using a feature, you would do the following:</p> <ol> <li>Create a feature project, and add your plugin to the feature using the feature editor.</li> <li>Create an update site project, and add your feature to the update site, using the update site editor.</li> <li>Build the update site. This creates a site.xml file, a features folder, and a plugins folder.</li> </ol> <p>You should then be able to point the Eclipse update manager at the folder or URL containing the site.xml, and install your plugin that way. The advantage of this approach is you can upload the files to a website and deploy remotely.</p>