Maven Repository - POM file for JSON json 20080701 20080701

Summary

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....

Declaration

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.





License

Name:provided without support or warranty
URL: http://www.json.org/license.html.

Depended by

The following table lists the most popular artifacts which are depending on json-20080701. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Androidandroid 2.3.3
A library jar that provides APIs for Applications written for the Google Android Platform.
11
Androidandroid 4.0.1.2
A library jar that provides APIs for Applications written for the Google Android Platform.
27
Androidandroid 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
Androidandroid 2.3.1
A library jar that provides APIs for Applications written for the Google Android Platform.
10
Androidandroid 4.1.1.4
A library jar that provides APIs for Applications written for the Google Android Platform.
37
Librarymapfish-geo-lib 1.2.0
Java library for generating GeoJSON structures
9

Plugin

The following plugins are used in the json-20080701.jar

  1. maven-compiler-plugin




Packages

The following packages are defined in the json-20080701.jar

org.json

POM File Source

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>