Is there a way to run plug-in applications for eclipse without fully launching the eclipse platform

Consider a simple "Hello world" plugin, how can I run it without fully launching the eclipse platform?

+3
source share
1 answer

Since eclipse plugins are OSGi packages, you can run a simple hello-world plugin in an OSGi container like Equinox or Apache Felix

Here is an example of how to start the eclipse standalone help system. (This, of course, has more dependencies than hello-world)

+1
source

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


All Articles