json-smart-2.1.0.pom 2.1 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. <parent>
  8. <groupId>net.minidev</groupId>
  9. <artifactId>parent</artifactId>
  10. <version>2.1.0</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. <dependencies>
  24. <dependency>
  25. <groupId>junit</groupId>
  26. <artifactId>junit</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>net.minidev</groupId>
  31. <artifactId>asm</artifactId>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.felix</groupId>
  38. <artifactId>maven-bundle-plugin</artifactId>
  39. <version>2.3.7</version>
  40. <extensions>true</extensions>
  41. <configuration>
  42. <instructions>
  43. <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
  44. <Bundle-Name>${project.artifactId}</Bundle-Name>
  45. <Bundle-Version>${project.version}</Bundle-Version>
  46. <Export-Package>net.minidev.json,net.minidev.json.annotate,net.minidev.json.mapper,net.minidev.json.parser,net.minidev.json.serialiser</Export-Package>
  47. <!-- Private-Package></Private-Package -->
  48. </instructions>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>