Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since Eclipse 3.5 there seems to be no option to have drop a plugin jar ( not a feature ) in the Eclipse base directory and have it picked up at next startup.

Is there any possiblity to have plain plugins jars installed in Eclipse 3.5?

share|improve this question

2 Answers

up vote 17 down vote accepted

Since the advent of p2, you should be using the dropins directory instead.

share|improve this answer
Thanks for the answer. That did not work since the dropins folder expects a properly formatted jar with metadata, which I don't have. – Robert Munteanu May 29 '09 at 19:40
3  
That's inaccurate. At most, put it in the dropins in a folder which is named plugins. – zvikico May 31 '09 at 10:49
1  
Yes, that worked! Thank you. – Robert Munteanu May 31 '09 at 13:14
2  
To be completely clear create "plugins" under "<eclipse_root>/dropins" and make sure to restart eclipse with the "-clean" option. – Spencer Kormos Jun 28 '11 at 16:07

Simplest way - just put in the Eclipse plugins folder. You can start Eclipse with the -clean option to make sure Eclipse cleans its' plugins cache and sees the new plugin.

In general, it is far more recommended to install plugins using proper update sites.

share|improve this answer
1  
Thanks for the answer. That does not work anymore in Eclipse 3.5 . Any I'm aware of the proper way of installing plugins, just that it's not available for a plugin I'm using. – Robert Munteanu May 31 '09 at 11:38
This worked for me in eclipse 3.7.2. – thejoshwolfe Jan 8 at 6:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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