4

Is there Equinox consumable as maven dependency with maven or gradle

The latest in Central is 'org.eclipse.osgi:org.eclipse.osgi:3.7.1', while the latest seems to be 3.10 http://download.eclipse.org/equinox/

Paul Verest
  • 60,022
  • 51
  • 208
  • 332

1 Answers1

2

In 2017 there was a big initiative to publish eclipse jars on maven central.

During this process some of the coordinates have changed. The newest org.eclipse.osgi is:

<dependency>
  <groupId>org.eclipse.platform</groupId>
  <artifactId>org.eclipse.osgi</artifactId>
  <version>3.15.100</version>
</dependency>

See for reference:

Jmini
  • 9,189
  • 2
  • 55
  • 77