1
0
mirror of https://github.com/square/okhttp.git synced 2025-08-07 12:42:57 +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>logging-interceptor</artifactId>
<name>OkHttp Logging Interceptor</name>
@@ -37,4 +38,24 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<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.logging.*
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>