Rename the artifact 'netty' to 'netty-all' and make it non-OSGi

- We are going to make individual modules OSGi
This commit is contained in:
Trustin Lee 2013-02-05 18:49:45 +09:00
parent 598e70fd8f
commit fd40df9033

View File

@ -23,8 +23,8 @@
<version>4.0.0.Beta1-SNAPSHOT</version>
</parent>
<artifactId>netty</artifactId>
<packaging>bundle</packaging>
<artifactId>netty-all</artifactId>
<packaging>jar</packaging>
<name>Netty/All-in-One</name>
@ -278,31 +278,6 @@
<locale>en_US</locale>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>
com.sun.nio.sctp;resolution:=optional,
sun.misc;resolution:=optional,
sun.net.util;resolution:=optional,
!io.netty.*,
*
</Import-Package>
<Export-Package>
!io.netty.example.*,
!io.netty.*.internal.*,
io.netty.*
</Export-Package>
<Private-Package>
io.netty.*.internal.*
</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>