Made a trivial, non-invasive, OSGi addition to the parent pom

This commit is contained in:
Lennart Jörelid 2013-03-17 18:09:51 +01:00
parent c74e3da2dd
commit 295dfd3ec6

15
pom.xml
View File

@ -10,7 +10,7 @@
<groupId>net.engio</groupId>
<artifactId>mbassador</artifactId>
<version>1.1.4-SNAPSHOT</version>
<packaging>jar</packaging>
<packaging>bundle</packaging>
<name>mbassador</name>
<description>
Mbassador is a fast and flexible message bus system following the publish subscribe pattern.
@ -77,6 +77,19 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Export-Package>{local-packages}</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>