You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by jc...@apache.org on 2007/02/03 23:57:50 UTC

svn commit: r503328 - /mina/trunk/core/pom.xml

Author: jconlon
Date: Sat Feb  3 14:57:50 2007
New Revision: 503328

URL: http://svn.apache.org/viewvc?view=rev&rev=503328
Log:
Added a maven-bundle-plugin to create OSGi compatible jars.

Modified:
    mina/trunk/core/pom.xml

Modified: mina/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/core/pom.xml?view=diff&rev=503328&r1=503327&r2=503328
==============================================================================
--- mina/trunk/core/pom.xml (original)
+++ mina/trunk/core/pom.xml Sat Feb  3 14:57:50 2007
@@ -8,8 +8,22 @@
   </parent>
   <artifactId>mina-core</artifactId>
   <name>Apache MINA Core API</name>
-  <packaging>jar</packaging>
+  <packaging>bundle</packaging>
 
+  <build>
+  	<plugins>
+  		<plugin>
+  			<groupId>org.apache.felix</groupId>
+  			<artifactId>maven-bundle-plugin</artifactId>
+  			<extensions>true</extensions>
+  			<configuration>
+  				<instructions>
+  					<Export-Package>*</Export-Package>
+  				</instructions>
+  			</configuration>
+  		</plugin>
+  	</plugins>
+  </build>
   <dependencies>
 
     <dependency>