How do I create an Eclipse library?

How do I convert my Eclipse plugin so that it is seen as Libary in Eclipse like JUnit?

Thanks in advance!

+2


a source to share


1 answer


The Deployment Step will take care of that
(from the excellent vogella.de tutorials section , specifically vogella "Eclipse Products and Deployment - Tutorial" )

overview

Switch to your product config file and select the Browse tab. Click the Eclipse Export Product 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" folder in your Eclipse installation directory and start Eclipse. Your plugin should now be available.

+2


a source







All Articles