1

An answer to How to start osgi console (Equinox) suggest that more files are needed than just org.eclipse.osgi.jar

How to run (i.e. download and execute, or copy to a distribution folder) with maven or gradle?

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

1 Answers1

0

Download the equinox jars adding the below dependencies in your pom.xml

<dependency>
    <groupId>org.eclipse.osgi</groupId>
    <artifactId>org.eclipse.osgi</artifactId>
    <version>3.7.1</version>
</dependency>

Start the OSGI runtime and login to the documented port (6667 for Felix) to use the CLI

The console could also be started using the following commands

java -jar org.eclipse.osgi_3.2.0.jar -console
TheMonkWhoSoldHisCode
  • 2,182
  • 3
  • 26
  • 40