Eclipse dropins directory¶
The dropins directory in Eclipse is a designated folder used to manually manage and deploy plugins or features without requiring the use of the Eclipse Marketplace or standard installation wizards.^[600-developer__tools__extract-the-eclipse-plugin.md]
Directory Structure¶
Plugins placed in the dropins directory typically require a specific subfolder structure to be recognized correctly by the Eclipse platform.^[600-developer__tools__extract-the-eclipse-plugin.md]
The standard structure involves creating a folder (often named after the plugin, e.g., console/) which contains an eclipse/ subdirectory. Inside this subdirectory, the extracted features and plugins folders are placed:^[600-developer__tools__extract-the-eclipse-plugin.md]
dropins/
└── console/ (Custom plugin name)
└── eclipse/
├── features/ (Paste feature files here)
└── plugins/ (Paste plugin files here)
Manual Installation Workflow¶
The directory is commonly used when a user wants to extract an existing plugin installation for reuse or portability. The general procedure involves the following steps^[600-developer__tools__extract-the-eclipse-plugin.md]:
- Install the desired plugin via the Eclipse Marketplace to identify its files.
- Navigate to the Eclipse installation directory and copy the corresponding files from the root
featuresandpluginsfolders^[600-developer__tools__extract-the-eclipse-plugin.md]. - Uninstall the plugin through the Marketplace.
- Close Eclipse.
- Paste the copied files into the
dropinsdirectory using the structure described above^[600-developer__tools__extract-the-eclipse-plugin.md]. - Restart Eclipse to load the plugins from the new location^[600-developer__tools__extract-the-eclipse-plugin.md].
Related Concepts¶
- [[Eclipse Plugin]]
- [[Eclipse Marketplace]]
Sources¶
- 600-developer__tools__extract-the-eclipse-plugin.md