Turn reflectasm into an OSGi bundle

This commit is contained in:
Martin Grotzke 2014-07-21 18:36:25 +02:00
parent 2e131dc782
commit d5a789a1c6

13
pom.xml
View File

@ -11,7 +11,7 @@
<groupId>com.esotericsoftware</groupId>
<artifactId>reflectasm</artifactId>
<version>1.09</version>
<packaging>jar</packaging>
<packaging>bundle</packaging>
<name>ReflectASM</name>
<description>High performance Java reflection using code generation</description>
<url>https://github.com/EsotericSoftware/reflectasm</url>
@ -121,6 +121,17 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>com.esotericsoftware.reflectasm*</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>