Skip to content

Commit

Permalink
Add OSGI metadata to jackson2 jar (#1155)
Browse files Browse the repository at this point in the history
* add OSGI metadata

* more default behavior

* add OSGI info

* whitespace
  • Loading branch information
elharo authored and chingor13 committed Sep 12, 2018
1 parent ce74f54 commit 52ed466
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions google-api-client-jackson2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,27 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.4</version>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<instructions>
<Bundle-DocURL>https://developers.google.com/api-client-library/java/google-http-java-client/reference/1.20.0/jdiff/Google_HTTP_Client_Library_for_Java_1.19.0/com/google/api/client/json/jackson2/package-summary</Bundle-DocURL>
<Bundle-Description>Low-level implementation of the JSON parser library based on the Jackson 2 JSON library.</Bundle-Description>
<Bundle-SymbolicName>com.google.api.client.jackson2</Bundle-SymbolicName>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
Expand Down

0 comments on commit 52ed466

Please sign in to comment.