Maven Repository - POM file for JSON org.json chargebee-1.0 chargebee-1.0

Summary

org-json-java.

JSON framework based on org.json implementation (patched for ChargeBee)..

Declaration

Here is the list of declaration for org.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>org.json</artifactId>
   <version>chargebee-1.0</version>
</dependency>

If you think this Maven repository POM file listing for org.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.

Depends on

The org.json-chargebee-1.0 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 4.10
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1957




Plugin

The following plugins are used in the org.json-chargebee-1.0.jar

  1. maven-compiler-plugin
  2. maven-gpg-plugin
  3. maven-javadoc-plugin
  4. maven-source-plugin

Packages

The following packages are defined in the org.json-chargebee-1.0.jar

org.json

POM File Source

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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.json</groupId>
    <artifactId>org.json</artifactId>
    <packaging>jar</packaging>

    <version>chargebee-1.0</version>
    <name>org-json-java</name>
    <description>JSON framework based on org.json implementation (patched for ChargeBee).</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>

    <!-- https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide -->
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <scm>
        <connection>scm:git:git@github.com:chargebee/JSON-java.git</connection>
        <developerConnection>scm:git:git@github.com:chargebee/JSON-java.git</developerConnection>
        <url>git@github.com:chargebee/JSON-java.git</url>
    </scm>

    <build>
        <resources>
            <resource>
                <directory>.</directory>
                <includes>
                    <include>VERSION</include>
                </includes>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>