Using Eclipse Equinox

By default Wisdom uses Apache Felix as OSGi framework. You can also use Eclipse Equinox. To switch to Equinox, edit your project’s pom.xml file and add the <wisdomRuntime> parameter of the wisdom-maven-plugin:

<plugin>
    <groupId>org.wisdom-framework</groupId>
    <artifactId>wisdom-maven-plugin</artifactId>
    <version>0.6.1</version>
    <extensions>true</extensions>
    <configuration>
        <wisdomRuntime>equinox</wisdomRuntime>
    </configuration>
</plugin>