0

Is it possible to use the Eclipse native launcher with a Java application that isn't Equinox-based? For example a simple Swing application contained in myapp.jar.

I suppose that if this is at all possible the procedure should be the same on all the supported platforms and that one should act on the .ini files that come with the native launcher.

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
RobSullivan
  • 651
  • 2
  • 7
  • 15

1 Answers1

1

From the 'about' tag for OSGi..

OSGi is a specification for a Java component framework with enforced modularity. It provides a comprehensive model to build applications out of smaller, reusable parts. Though it works with any Java code, its advantages are best obtained by using its strong modularity.

As an aside: For deploying Java desktop apps., the best option is usually to install the app. using Java Web Start. JWS works on Windows, OS X & *nix.

Community
  • 1
  • 1
Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433