So, I'm working to deploy some plugins that we've developed via an update site. So, I've made a feature with the plugins, put the dependencies etc in. Then I made an update site project, and added the feature. Using the update site, I can install the feature I want, and it installs the required plugins. Unfortunately, they don't seem to work. As in, I can see them in the plugin list, I can import them as projects (so I've checked that the actual content all seems to be there) but for instance the editors and view that are in the plugins aren't accessible. Note that these plugins work fine when I run them in a nested eclipse launch (as in launch an eclipse application from my plugin dev eclipse version).

Why is it that my plugins are not working when deployed in this manner, but do work when launched through eclipse?

If it helps, I've been looking at this tutorial: http://www.vogella.de/articles/EclipsePlugIn/article.html#deployplugin_p2updatesite

Edit: added on the id to jump to the update site part I was using in the link above.

link|improve this question

50% accept rate
Do you see anything in the logs of the Eclipse that you are starting that has the plugins? Any indication that some of them might not be loaded. You can also start eclipse with the -console option and do an "ss" and make sure all of the plugins you expect are there. – Francis Upton Jan 6 at 2:49
Not seeing anything at all in the logs about the comments. Also, I tried exporting the plugins and putting them in both the plugins and dropins folders, which had the same effect. – Jeff Jan 6 at 4:11
At this point I would use the remote debugging to see what's going on. Set breakpoints in the Activators for your plugins to see if they get there (also you did use the OSGi console as I suggested to make sure your bundles (plugins) got started, right?) I have a feeling it will be something simple. But can't say what it is. – Francis Upton Jan 6 at 5:38
For a given contributed view, can you see it if you use Window>Show View>Other... and look in the dialog? – Paul Webster Jan 6 at 18:24
@PaulWebster No, neither the views nor the editors are showing. – Jeff Jan 6 at 22:13
show 1 more comment
feedback

1 Answer

I'm unclear on what you mean by being able to import them as projects (do your plugins contribute a project type, and that's usable?), but your plugins are probably throwing errors on startup. Check the error log, by going to:

Help > About Eclipse > Installation Details > Configuration (tab) > View Error Log (this is in Helios, yours may be slightly different)

Do this in your 'deployed' copy of Eclipse, where your plugins aren't working.

link|improve this answer
By importing them as projects, I mean using the "Plug-ins" view, rightclicking the project and selecting "import as binary project". As for the logs, there are no errors showing up from the plugins, so I guess it must be something else... – Jeff Jan 5 at 22:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.