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>20080701</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-20080701. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Android | android 2.3.3 A library jar that provides APIs for Applications written for the Google Android Platform. | 11 |
Android | android 4.0.1.2 A library jar that provides APIs for Applications written for the Google Android Platform. | 27 |
Android | android 2.2.1 A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag that was used to checkout the source from the Git repos was android-2.2_r1.1. | 5 |
Android | android 2.3.1 A library jar that provides APIs for Applications written for the Google Android Platform. | 10 |
Android | android 4.1.1.4 A library jar that provides APIs for Applications written for the Google Android Platform. | 37 |
Library | mapfish-geo-lib 1.2.0 Java library for generating GeoJSON structures | 9 |
The following plugins are used in the json-20080701.jar
The following packages are defined in the json-20080701.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"> <modelVersion>4.0.0</modelVersion> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20080701</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> <distribution>repo</distribution> </license> </licenses> <organization> <name>JSON</name> <url>http://json.org/</url> </organization> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.3</source> <target>1.3</target> </configuration> </plugin> </plugins> </build> <dependencies> </dependencies> </project>