JSON Small and Fast Parser.
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a te....
Here is the list of declaration for json-smart. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.minidev</groupId> <artifactId>json-smart</artifactId> <version>1.1.1</version> </dependency>
If you think this Maven repository POM file listing for json-smart is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following table lists the most popular artifacts which are depending on json-smart-1.1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JSON | fastjson 1.1.39 Fastjson is a JSON processor (JSON parser + JSON generator) written in Java | 13 |
JSON | fastjson 1.1.36 Fastjson is a JSON processor (JSON parser + JSON generator) written in Java | 12 |
JSON | jsonrpc2-base 1.35 Java classes to represent, parse and serialise JSON-RPC 2.0 requests, notifications and responses. | 6 |
Library | chunk-templates 2.1.1 Chunk Template Engine for Java | 16 |
The following packages are defined in the json-smart-1.1.1.jar
net.minidev.json net.minidev.json.parser
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <!-- this POM is released under an Apache 2.0 license --> <modelVersion>4.0.0</modelVersion> <artifactId>json-smart</artifactId> <packaging>jar</packaging> <parent> <groupId>net.minidev</groupId> <artifactId>parent</artifactId> <version>1.1.1</version> <relativePath>../parent/pom.xml</relativePath> </parent> <name>JSON Small and Fast Parser</name> <description> JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language. </description> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>