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

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

Depends on

The jackson-datatype-joda-2.3.3 has 5 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
JEEjackson-annotations 2.3.0
Core annotations used for value types, used by Jackson data binding package.
22
JSONjackson-core 2.3.3
Core Jackson abstractions, basic JSON streaming API implementation
19
JEEjackson-databind 2.3.3
General data-binding functionality for Jackson: works on core streaming API
36
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




Plugin

The following plugins are used in the jackson-datatype-joda-2.3.3.jar

  1. replacer

Packages

The following packages are defined in the jackson-datatype-joda-2.3.3.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"?>
<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-joda</artifactId>
  <name>Jackson-datatype-Joda</name>
  <version>2.3.3</version>
  <packaging>bundle</packaging>
  <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.3.3</tag>
  </scm>
  <properties>
    <version.jackson.annotations>2.3.0</version.jackson.annotations>
    <version.jackson.core>2.3.3</version.jackson.core>
    <!-- Generate PackageVersion.java into this directory. -->
    <packageVersion.dir>com/fasterxml/jackson/datatype/joda</packageVersion.dir>
    <packageVersion.package>${project.groupId}.joda</packageVersion.package>

    <!-- Configuration properties for the OSGi maven-bundle-plugin -->
    <osgi.import>com.fasterxml.jackson.annotation
,com.fasterxml.jackson.core
,com.fasterxml.jackson.core.util
,com.fasterxml.jackson.databind
,com.fasterxml.jackson.databind.deser.std
,com.fasterxml.jackson.databind.introspect
,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.joda.time
,org.joda.time.format
    </osgi.import>
    <osgi.export>${project.groupId}.joda.*;version=${project.version}
</osgi.export>
  </properties>

  <dependencies>
    <!-- Extends Jackson mapper, 2.x; but also needs annotations slightly,
         to support JsonFormat
      -->
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-annotations</artifactId>
      <version>${version.jackson.annotations}</version>
    </dependency>
    <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 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>
    <plugins>
      <plugin>
        <!-- Inherited from oss-base. Generate PackageVersion.java.-->
        <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>