Maven Repository - POM file for Http jackson-datatype-joda 2.1.1 2.1.1

Summary

Jackson-datatype-JODA.

Add-on module for Jackson (http://jackson.codehaus.org) to support Joda (http://joda-time.sourceforge.net/) data types..

Declaration

Here is the list of declaration for jackson-datatype-joda. 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-joda</artifactId>
   <version>2.1.1</version>
</dependency>

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

License

Apache License.





Depends on

The jackson-datatype-joda-2.1.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.1.1
Core Jackson abstractions, basic JSON streaming API implementation
40
JEEjackson-databind 2.1.1
General data-binding functionality for Jackson: works on core streaming API
45
Java Libraryjoda-time 2.1
Date and time library to replace JDK date handling
266
JUnitjunit 4.8.2
JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java.
919

Depended by

The following table lists the most popular artifacts which are depending on jackson-datatype-joda-2.1.1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JEEcommon-jackson 1.7
Jackson dependencies and helper utilities
15

Packages

The following packages are defined in the jackson-datatype-joda-2.1.1.jar

com.fasterxml.jackson.datatype.joda
com.fasterxml.jackson.datatype.joda.deser
com.fasterxml.jackson.datatype.joda.ser




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!--
 |  Copyright 2012 FasterXML.com
 |
 |  Licensed under the Apache License, Version 2.0 (the "License");
 |  you may not use this file except in compliance with the License.
 |  You may obtain a copy of the License at
 |
 |  http://www.apache.org/licenses/LICENSE-2.0
 |
 |  Unless required by applicable law or agreed to in writing, software
 |  distributed under the License is distributed on an "AS IS" BASIS,
 |  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 |  See the License for the specific language governing permissions and
 |  limitations under the License.
-->
<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>4</version>
  </parent>
  <groupId>com.fasterxml.jackson.datatype</groupId>
  <artifactId>jackson-datatype-joda</artifactId>
  <name>Jackson-datatype-JODA</name>
  <version>2.1.1</version>
  <description>Add-on module for Jackson (http://jackson.codehaus.org) to support
Joda (http://joda-time.sourceforge.net/) data types.
  </description>
  <url>http://wiki.fasterxml.com/JacksonModuleJoda</url>
  <scm>
    <connection>scm:git:git@github.com:FasterXML/jackson-datatype-joda.git</connection>
    <developerConnection>scm:git:git@github.com:FasterXML/jackson-datatype-joda.git</developerConnection>
    <url>http://github.com/FasterXML/jackson-datatype-joda</url>    
    <tag>jackson-datatype-joda-2.1.1</tag>
  </scm>
  <properties>
    <!-- Configuration properties for the OSGi maven-bundle-plugin -->
    <osgi.import>com.fasterxml.jackson.core
,com.fasterxml.jackson.core.util
,com.fasterxml.jackson.databind
,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.std
,org.joda.time
,org.joda.time.format
    </osgi.import>
    <osgi.export>com.fasterxml.jackson.datatype.joda.*;version=${project.version}
</osgi.export>
  </properties>

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

    <!-- And obviously also depends on Joda lib -->
    <dependency>
        <groupId>joda-time</groupId>
        <artifactId>joda-time</artifactId>
        <version>2.1</version>
    </dependency>
<!-- 26-Jun-2012, tatu: Not sure if this should be included; it appears to be
   a transitive dependency. Leaving out for now.
    <dependency>
        <groupId>org.joda</groupId>
        <artifactId>joda-convert</artifactId>
        <version>1.2</version>
    </dependency>
-->

    <!--  Test Dependencies -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <resources><!-- make sure our VERSION.txt gets filtered, copied -->
      <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
      </resource>  
    </resources>
  </build>
</project>