Eclipse plugin: development and updates
17 Oct 2025 | eclipse pluginEclipse plugin for RoboVM is being maintained at low priority and there are no plans for major updates in the near future. More over it is not clear if it is being used at all. Anyway meanwhile we keep it working and compatible with latest Eclipse versions. Below is the step-by-step instruction on how to set up development environment for it.
Download eclipse
For plugin development Eclipse IDE for Java Developers is required. It can be downloaded from Eclipse official website.
Install Plug-in Development Environment (PDE)
To install the PDE using the “Install New Software” feature:
- Open the Install Dialog: menu
Help > Install New Software.... - Select an Update Site: In the “Work with” drop-down list, select the URL for your current Eclipse release (e.g., the “latest releases” site or the specific release name).
- Expand the category for General Purpose Tools and check the box for Eclipse Plug-in Development Environment.
- Complete Installation(review the items, accept the license agreement, and click Finish).
- Restart Eclipse.
Import project
- Open Eclipse and select
File -> Import projects -> Maven -> Existing Maven Projects - navigate to
robovm/plugins/eclipse - make sure
ui,feature,update-siteare selected
Hack and test
It should be compilable. To run or debug plugin do the following:
- Open
Run -> Run Configurations... - Create new configuration of type
Eclipse Application - Set the name, e.g.
RoboVM Plugin Dev - In the
Maintab, selectRun a productand chooseorg.eclipse.platform.ide - In the
Plug-instab, selectLaunch with all workspace and enabled target plug-ins - Click
Applyand thenRunor `Debug
Comments