json-smart-1.3.2.pom 2.0 KB

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