Since iPOJO 1.6.6 has been released, don't we require a 1.6.6 version of the
manipulator as well. As I understood it it is important that the manipulator
version matches the iPOJO version. I use the maven-ipojo-plugin with the
dependency to the manipulator version to used, as follows:
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-ipojo-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>ipojo-bundle</goal>
</goals>
<configuration>
<metadata>ipojo-metadata.xml</metadata>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.ipojo.manipulator</artifactId>
<version>${ipojo-manipulator-version}</version>
</dependency>
</dependencies>
</plugin>
What manipulator version should I use if I use iPOJO 1.6.6?
/Bengt