json-smart-2.0-RC1.pom 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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>jar</packaging>
  7. <parent>
  8. <groupId>net.minidev</groupId>
  9. <artifactId>parent</artifactId>
  10. <version>2.0-RC1</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. </project>