views:

14

answers:

1

Hi:

How do I convert my Eclipse plugin so it is seen in Eclipse as a Libary, like JUnit, for example?

Thanks in advance!

+1  A: 

This would be taken care of by the Deploy step (from the excellent vogella.de tutorials section)

alt text

Switch now to your product configuration file and select the tab Overview. Click on the "Eclipse Product export wizard" to export your product.

alt text

Select the plugin you want to export.

alt text

This will create a jar in the directory plugin. Copy this jar to the "dropin" directory in your Eclipse installation directory and re-start Eclipse. Your plugin should now be available.

VonC
Thanks for the pointer to the tutorial and the "Product project".
alesch