1
0
mirror of https://github.com/square/okhttp.git synced 2025-11-27 18:21:14 +03:00

Make OkHttp OSGi ready

This commit is contained in:
lburgazzoli
2016-01-05 09:22:11 +01:00
parent 20653ad0e1
commit 2b29196ee2
6 changed files with 116 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
<version>3.0.0-SNAPSHOT</version>
</parent>
<packaging>bundle</packaging>
<artifactId>okhttp-apache</artifactId>
<name>OkHttp Apache HttpClient</name>
@@ -56,6 +57,20 @@
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Export-Package>
okhttp3.apache.*
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>