Merge pull request #99 from jwtk/95-osgi

Enabled OSGi bundle
This commit is contained in:
Les Hazlewood 2016-03-08 19:35:31 -08:00
commit d747f09662
1 changed files with 12 additions and 1 deletions

13
pom.xml
View File

@ -355,7 +355,7 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.5</version>
<version>3.0.1</version>
<extensions>true</extensions>
<executions>
<execution>
@ -366,6 +366,17 @@
</goals>
</execution>
</executions>
<configuration>
<instructions>
<Import-Package><![CDATA[
android.util;resolution:=optional,
org.bouncycastle.jce;resolution:=optional,
org.bouncycastle.jce.spec;resolution:=optional,
*
]]>
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>