JSON (JavaScript Object Notation).
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. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> </dependency>
If you think this Maven repository POM file listing for json is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:provided without support or warranty
URL: http://www.json.org/license.html.
The following table lists the most popular artifacts which are depending on json-20090211. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Parser | closure-compiler r2180 Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's J... | 8 |
Web Service | jsonassert 1.2.3 A library to develop RESTful but flexible APIs | 8 |
Parser | closure-compiler r2388 Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's J... | 15 |
Testing | dasein-cloud-test 2014.11.1 Unit tests for testing implementations of the Dasein Cloud API. | 21 |
Testing | fitnesse 20140201 The fully integrated standalone wiki, and acceptance testing framework. | 6 |
Android | bugsnag-android 2.2.0 Official Bugsnag notifier for Android applications | 26 |
Parser | closure-compiler rr2079.1 Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's J... | 23 |
Parser | closure-compiler v20130722 Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's J... | 38 |
Parser | closure-compiler r1352 Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's J... | 12 |
Console | org.apache.felix.servicediagnostics.plugin 0.1.3 This is a plugin for the Apache Felix OSGi web console providing a graphical representation of services and missing required dependencies. | 11 |
Web Service | jsonassert 1.2.1 A library to develop RESTful but flexible APIs | 6 |
Parser | closure-compiler v20130227 Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's J... | 7 |
JSON | jackson-datatype-json-org 2.3.1 Support for datatypes of "org.json" JSON library (see http://json.org/java), mainly to make it easier to upgrade code to Jackson, using automated conversions. | 13 |
Testing | fitnesse 20121220 The fully integrated standalone wiki, and acceptance testing framework. | 13 |
Web Service | jsonassert 1.1.0 A library to develop RESTful but flexible APIs | 15 |
The following packages are defined in the json-20090211.jar
org.json
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <!-- this POM is released under an Apache 2.0 license--> <modelVersion>4.0.0</modelVersion> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> <name>JSON (JavaScript Object Notation)</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> <url>http://www.json.org/java/index.html</url> <licenses> <license> <name>provided without support or warranty</name> <url>http://www.json.org/license.html</url> </license> </licenses> <organization> <name>JSON</name> <url>http://json.org/</url> </organization> <dependencies/> </project>