I have created a plugin project and exported it as a plugin and i want to add it to another existing RCP project. So is there any steps to add plugin manually to existing project.
Asked
Active
Viewed 2,970 times
1
-
Add the plug-in to the target platform (_Window > Preferences: Plug-in Development > Target Platform_) to be able to depend on it or to add it in a feature. Or if you want to install the plug-in into an Eclipse-based application, copy the JAR into the `dropins` folder. – howlger Mar 12 '19 at 07:09
-
possible dublicate https://stackoverflow.com/questions/31553376/eclipse-how-to-install-a-plugin-manually – Akash Shah Mar 12 '19 at 07:14
1 Answers
2
Follow the below step to achieve the goal:
- In Eclipse, go to Help > Install New Software.
- Press the Add button. This displays the Add Repository window.
- In the Add Repository window, press the Archive button to open a file browser.
- In the file browser, select your Eclipse plugin file that you created. Click Open to return to the previous dialog.
- The Add Repository window appears. Press OK.
- The installation details are displayed. Press Next. The items you checked are listed. Press Next again.
- Accept the terms of the license agreement and click Finish.
- Check the Java ME SDK Tools Category and its subcategories and press the Next button to start the Add wizard.
- Accept the terms of the license agreement and click Finish. The installation process starts.
- When the installation process completes, restart Eclipse.

Ali Azim
- 160
- 1
- 15