Maven Repository - POM file for JSON jackson-datatype-json-org 2.3.1 2.3.1

Summary

Jackson-datatype-json.org.

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

Declaration

Here is the list of declaration for jackson-datatype-json-org. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.fasterxml.jackson.datatype</groupId>
   <artifactId>jackson-datatype-json-org</artifactId>
   <version>2.3.1</version>
</dependency>

If you think this Maven repository POM file listing for jackson-datatype-json-org is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





Depends on

The jackson-datatype-json-org-2.3.1 has 4 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
JSONjackson-core 2.3.1
Core Jackson abstractions, basic JSON streaming API implementation
24
JEEjackson-databind 2.3.1
General data-binding functionality for Jackson: works on core streaming API
37
JSONjson 20090211
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...
157
JUnitjunit 4.8.2
JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java.
919

Plugin

The following plugins are used in the jackson-datatype-json-org-2.3.1.jar

  1. replacer

Packages

The following packages are defined in the jackson-datatype-json-org-2.3.1.jar

com.fasterxml.jackson.datatype.jsonorg

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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion> 
  <parent>
    <groupId>com.fasterxml</groupId>
    <artifactId>oss-parent</artifactId>
    <version>12</version>
  </parent>
  <groupId>com.fasterxml.jackson.datatype</groupId>
  <artifactId>jackson-datatype-json-org</artifactId>
  <packaging>bundle</packaging>
  <name>Jackson-datatype-json.org</name>
  <version>2.3.1</version>
  <description>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.
  </description>
  <url>http://wiki.fasterxml.com/JacksonModuleProjects</url>
  <scm>
    <connection>scm:git:git@github.com:FasterXML/jackson-datatype-json-org.git</connection>
    <developerConnection>scm:git:git@github.com:FasterXML/jackson-datatype-json-org.git</developerConnection>
    <url>http://github.com/FasterXML/jackson-datatype-json-org</url>    
    <tag>jackson-datatype-json-org-2.3.1</tag>
  </scm>
  <properties>
    <version.jackson.core>2.3.1</version.jackson.core>
    <!-- Generate PackageVersion.java into this directory. -->
    <packageVersion.dir>com/fasterxml/jackson/datatype/jsonorg</packageVersion.dir>
    <packageVersion.package>${project.groupId}.jsonorg</packageVersion.package>

    <osgi.import>com.fasterxml.jackson.core
,com.fasterxml.jackson.core.util
,com.fasterxml.jackson.databind
,com.fasterxml.jackson.databind.deser
,com.fasterxml.jackson.databind.deser.std
,com.fasterxml.jackson.databind.jsontype
,com.fasterxml.jackson.databind.module
,com.fasterxml.jackson.databind.node
,com.fasterxml.jackson.databind.ser
,com.fasterxml.jackson.databind.ser.std
,org.json
    </osgi.import>
    <osgi.export>${project.groupId}.jsonorg.*;version=${project.version}
</osgi.export>
  </properties>

  <dependencies>
    <!-- Extends Jackson mapper, 2.x -->
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>${version.jackson.core}</version>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>${version.jackson.core}</version>
    </dependency>

    <!-- And support org.json/java types -->
    <!-- 26-Dec-2013, tatu: As per [Issue#6], could perhaps rather do:

<dependency>
    <groupId>org.apache.geronimo.bundles</groupId>
    <artifactId>json</artifactId>
    <version>20090211_1</version>
</dependency>

      -->

    <dependency>
      <groupId>org.json</groupId>
      <artifactId>json</artifactId>
      <version>20090211</version>
    </dependency>

     <!-- and for testing, JUnit -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>com.google.code.maven-replacer-plugin</groupId>
        <artifactId>replacer</artifactId>
        <executions>
          <execution>
            <id>process-packageVersion</id>
            <phase>generate-sources</phase>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>