huidube
huidube

Reputation: 410

GEF 5 without Eclipse Platform

Is it possible to integrate GEF 5 in a normal Javafx Project? No Eclipse RCP Platform. No Eclipse Plugin Project.

Just a simple Java(Fx) Project - adding the dependencies and start it like a normal JavaFx Application?

Upvotes: 2

Views: 234

Answers (1)

Matthias
Matthias

Reputation: 1005

Publishing the jars on maven central is covered in http://bugs.eclipse.org/bugs/show_bug.cgi?id=521728.

However, you should be able to use the jars that are published on the update site.

All GEF code that depends on Eclipse UI is provisioned in separate bundles suffixed with ".ui", i.e. "org.eclipse.gef.mvc.fx.ui", "org.eclipse.gef.zest.fx.ui", "org.eclipse.gef.fx.ui", etc.

But many parts of the framework are independent from Eclipse, such as:

  • Geometry
  • Graph
  • Layout
  • DOT
  • etc.

Upvotes: 2

Related Questions