json-smart-2.2.pom 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>minidev-parent</artifactId>
  10. <version>2.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. <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>accessors-smart</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>
  47. net.minidev.json,
  48. net.minidev.json.annotate,
  49. net.minidev.json.parser,
  50. net.minidev.json.reader,
  51. net.minidev.json.writer
  52. </Export-Package>
  53. <!-- Private-Package></Private-Package -->
  54. <Embed-Dependency>accessors-smart;groupId=net.minidev;inline=true</Embed-Dependency>
  55. </instructions>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>