Hi Justin,
can you explain what was the issue? I'm surprised to see...it seems to
me a major changes in the way we create our OSGi bundles and I'm not
sure it still works ;-)
> Modified: trunk/code/modules/bundles/framework/pom.xml
> Url: https://grizzly.dev.java.net/source/browse/grizzly/trunk/code/modules/bundles/framework/pom.xml?view=diff&rev=2944&p1=trunk/code/modules/bundles/framework/pom.xml&p2=trunk/code/modules/bundles/framework/pom.xml&r1=2943&r2=2944
> ==============================================================================
> --- trunk/code/modules/bundles/framework/pom.xml (original)
> +++ trunk/code/modules/bundles/framework/pom.xml 2009-04-10 15:23:19+0000
> @@ -3,13 +3,13 @@
> <parent>
> <groupId>com.sun.grizzly</groupId>
> <artifactId>grizzly-project</artifactId>
> - <version>1.9.12-SNAPSHOT</version>
> + <version>1.9.13-SNAPSHOT</version>
> <relativePath>../../../pom.xml</relativePath>
> </parent>
> <modelVersion>4.0.0</modelVersion>
> <groupId>com.sun.grizzly</groupId>
> <artifactId>grizzly-nio-framework</artifactId>
> - <packaging>bundle</packaging>
> + <packaging>jar</packaging>
> <version>${grizzly-version}</version>
> <name>grizzly-nio-framework</name>
> <url>https://grizzly.dev.java.net</url>
> @@ -20,15 +20,24 @@
> <groupId>org.apache.felix</groupId>
> <artifactId>maven-bundle-plugin</artifactId>
> <version>${felix-version}</version>
> - <extensions>true</extensions>
> <configuration>
> <instructions>
> <Import-Package>*</Import-Package>
> <Export-Package>com.sun.grizzly.*;-split-package:=merge-first</Export-Package>
> <Embed-Dependency>com.sun.grizzly;scope=runtime</Embed-Dependency>
> </instructions>
> + <unpackBundle>true</unpackBundle>
> </configuration>
> - </plugin>
> + <executions>
> + <execution>
> + <id>osgi-bundle</id>
> + <phase>package</phase>
> + <goals>
> + <goal>bundle</goal>
> + </goals>
> + </execution>
> + </executions>
> + </plugin>
> <plugin>
> <artifactId>maven-compiler-plugin</artifactId>
> <configuration>
Thanks!!
-- Jeanfrancois