Browse Source

Merge pull request #6 from mattbishop/master

Patch to OSGi-ify the built jar file.
pull/7/head
kallestenflo 13 years ago
parent
commit
442726b8c8
  1. 12
      json-path/pom.xml

12
json-path/pom.xml

@ -24,7 +24,7 @@
</parent> </parent>
<groupId>com.jayway.jsonpath</groupId> <groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId> <artifactId>json-path</artifactId>
<packaging>jar</packaging> <packaging>bundle</packaging>
<version>0.6.0-SNAPSHOT</version> <version>0.6.0-SNAPSHOT</version>
<name>json-path</name> <name>json-path</name>
<url>http://code.google.com/p/json-path/</url> <url>http://code.google.com/p/json-path/</url>
@ -65,4 +65,14 @@
</dependencies> </dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project> </project>

Loading…
Cancel
Save