json-smart-1.3.3.pom 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <!-- this POM is released under an Apache 2.0 license -->
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>json-smart</artifactId>
  6. <packaging>bundle</packaging>
  7. <version>1.3.3</version>
  8. <parent>
  9. <groupId>net.minidev</groupId>
  10. <artifactId>parent</artifactId>
  11. <version>1.3.2</version>
  12. <relativePath>../parent/pom.xml</relativePath>
  13. </parent>
  14. <name>JSON Small and Fast Parser</name>
  15. <description>
  16. JSON (JavaScript Object Notation) is a lightweight data-interchange format.
  17. It is easy for humans to read and write. It is easy for machines to parse and generate.
  18. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition
  19. - December 1999. JSON is a text format that is completely language independent but uses
  20. conventions that are familiar to programmers of the C-family of languages, including C, C++, C#,
  21. Java, JavaScript, Perl, Python, and many others.
  22. These properties make JSON an ideal data-interchange language.
  23. </description>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.apache.felix</groupId>
  28. <artifactId>maven-bundle-plugin</artifactId>
  29. <version>2.3.7</version>
  30. <extensions>true</extensions>
  31. <configuration>
  32. <instructions>
  33. <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
  34. <Bundle-Name>${project.artifactId}</Bundle-Name>
  35. <Bundle-Version>${project.version}</Bundle-Version>
  36. <Export-Package>net.minidev.json,net.minidev.json.parser,net.minidev.json.serialiser</Export-Package>
  37. <!-- Private-Package></Private-Package -->
  38. </instructions>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <dependencies>
  44. <dependency>
  45. <groupId>junit</groupId>
  46. <artifactId>junit</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. </dependencies>
  50. </project>