alesch
alesch

Reputation: 842

Howto create an Eclipse Library?

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

Thanks in advance!

Upvotes: 2

Views: 68

Answers (1)

VonC
VonC

Reputation: 1323293

This would be taken care of by the Deploy step
(from the excellent vogella.de tutorials section,
specifically the vogella's "Eclipse Products and Deployment - Tutorial")

overview

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

select export

Select the plugin you want to export.

export

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.

Upvotes: 2

Related Questions