F.A.Q.
IDE Integration
Eclipse
Maven integration in Eclipse requires a m2e connector to fully use plugins in the native Eclipse’s build process. An overview of this issue can be found at here. For now there is no plan to add such a connector for Wisdom. To remove warnings and errors, we recommend to set an lifecycle mapping file in your Eclipse.
Here is the minimal lifecycle mapping file to remove wisdom’s errors in Eclipse.
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>