Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
Equinox p2 Migration Guide
This article is a stub. You can help Eclipsepedia by expanding it.
This is a work in progress, and subject to change.
Before & After
Below is a comparison chart showing how to organize your extensions, plugins & features, using a p2-free Eclipse and a p2-enabled Eclipse (3.4M6+).
Eclipse 3.2 through Eclipse 3.4M5 | Eclipse 3.4M6+ | |
---|---|---|
Eclipse folder |
eclipse/ plugins/ (plugin folders & jars) features/ (feature folders) |
eclipse/dropins/somefolder/eclipse/ plugins/ (plugin folders & jars) features/ (feature folders) - or, simpler - eclipse/dropins/eclipse/ plugins/ (plugin folders & jars) features/ (feature folders) Note that the old layout is also still supported, but with the new dropins folder, you have more control and it's easier to clean up unwanted extensions (eg., by deleting the whole somefolder folder). |
.link files |
eclipse/links/ (*.link files) |
eclipse/dropins/ (*.link files) As before, each .link file contains a path to a folder in which path=/home/nickb/eclipse/phpeclipse - or - path=X:/home/nickb/eclipse/ecf Note that the old layout is also still supported. |
Extension folders |
.../somefolder/eclipse/ plugins/ (plugin folders & jars) features/ (feature folders) .eclipseextension These folders, including the If you want to create the To import a pre-existing folder, use |
.../somefolder/eclipse/ plugins/ (plugin folders & jars) features/ (feature folders) External Extension Locations aren't supported anymore. You can only import the old extension directories content into the Eclipse plugins and features directories. All files from that external Extension Locations will then be copied into the folders under the Eclipse root folder. For the import the .eclipseextension file is no longer required. You can unpack a zip and point Eclipse at it. Or, even easier, point Eclipse at the zip and it'll handle the unzip for you. To import such a folder, use This doesn't feel the same as old "Extension Location". After adding a local feature you still have to manually select available features and explicitly install them, while with old update manager, linked "Extension Locations" were installed automatically. Furthermore there is no more UI support to install plugins into Extension Locations, all plugins go directly under the Eclipse root directory. |