Skip to content

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]:

  1. Install the desired plugin via the Eclipse Marketplace to identify its files.
  2. Navigate to the Eclipse installation directory and copy the corresponding files from the root features and plugins folders^[600-developer__tools__extract-the-eclipse-plugin.md].
  3. Uninstall the plugin through the Marketplace.
  4. Close Eclipse.
  5. Paste the copied files into the dropins directory using the structure described above^[600-developer__tools__extract-the-eclipse-plugin.md].
  6. Restart Eclipse to load the plugins from the new location^[600-developer__tools__extract-the-eclipse-plugin.md].
  • [[Eclipse Plugin]]
  • [[Eclipse Marketplace]]

Sources

  • 600-developer__tools__extract-the-eclipse-plugin.md