I am trying to launch a tiny OSGi project from IntelliJ Idea. I added the Equinox container in the OSGi configuration section in Idea. Then I added the OSGi facet to the project. Everything looks fine.
However, as soon as I try to start the project, I have problems. I use the "OSGi Bundles" runner from IntelliJ Idea. There I select my project packages and the OSGi container and run it. This is where the problem begins. I always repeat the same error message:
___ / / / / Oops, there has been a problem! / / /__/ Platform [platform.felix 3.0.6] is not supported ___ /__/ -> Exception caught during execution: org.ops4j.pax.runner.ConfigurationException: Platform [platform.felix 3.0.6] is not supported at org.ops4j.pax.runner.Run.installPlatform(Run.java:611) at org.ops4j.pax.runner.Run.start(Run.java:221) at org.ops4j.pax.runner.Run.main(Run.java:148) at org.ops4j.pax.runner.Run.main(Run.java:121)
I tried to use other OSGi containers like Felix or Knopflerfish and had the same problem. Does anyone know what I'm doing wrong. Or which OSGi container versions are supported by IntelliJ?
source share