Maven Repository - POM file for JSON json 20070829 20070829

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





Depended by

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

CategoryArtifactDepended By Count
Web Servicedata 1.15.12
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
21
Web Servicedata 1.10.6
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
20
Web Servicedata 1.15.7
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
22
Web Servicedata 1.13.4
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
20
Web Serviced2 1.15.2
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
5
Web Serviced2 1.15.7
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
5
Consoleorg.apache.felix.webconsole 1.2.0
Web Based Management Console for OSGi Frameworks. See http://felix.apache.org/apache-felix-web-console.html for more information on this bundle.
7
Web Servicedata 1.9.40
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
20
Consoleorg.apache.felix.webconsole 3.0.0
Web Based Management Console for OSGi Frameworks. See http://felix.apache.org/site/apache-felix-web-console.html for more information on this bundle.
6
Web Servicedata 1.15.9
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
20
Web Servicedata 1.15.2
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
23
Web Servicedata 1.9.18
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
23




Plugin

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

  1. maven-compiler-plugin

Packages

The following packages are defined in the json-20070829.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>20070829</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>

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