json-smart-2.0-RC3.pom 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <parent>
  7. <groupId>net.minidev</groupId>
  8. <artifactId>parent</artifactId>
  9. <version>2.0-RC3</version>
  10. <relativePath>../parent/pom.xml</relativePath>
  11. </parent>
  12. <name>JSON Small and Fast Parser</name>
  13. <description>
  14. JSON (JavaScript Object Notation) is a lightweight data-interchange format.
  15. It is easy for humans to read and write. It is easy for machines to parse and generate.
  16. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition
  17. - December 1999. JSON is a text format that is completely language independent but uses
  18. conventions that are familiar to programmers of the C-family of languages, including C, C++, C#,
  19. Java, JavaScript, Perl, Python, and many others.
  20. These properties make JSON an ideal data-interchange language.
  21. </description>
  22. <dependencies>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>net.minidev</groupId>
  30. <artifactId>asm</artifactId>
  31. </dependency>
  32. </dependencies>
  33. </project>