json-smart-2.1.1.pom 2.2 KB

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