Launch RCP application without installing Eclipse

I am new to RCP application. Is it possible to run an RCP application without installing eclipse. I mean, is it possible to run an rcp application, for example, a jar java application (for example, a Swing application)?

+4
source share
2 answers

The Eclipse RCP application usually contains everything that is required from Eclipse, so yes, you do not need to install Eclipse just to run the Eclipse RCP application.

+5
source

Use the .product file, and on the Summary tab, click Eclipse Product Export Wizard and follow the instructions. The wizard will generate all your startup applications and the .exe file. You can use this file to run your application!

0
source

Source: https://habr.com/ru/post/1447430/


All Articles