Download jackson-module-jaxb-annotations-2.1.0.jar file

Introduction

You can download jackson-module-jaxb-annotations-2.1.0.jar in this page.

License

Apache License

Type List

jackson-module-jaxb-annotations-2.1.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/pom.properties
META-INF/maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/pom.xml
com.fasterxml.jackson.module.jaxb.JaxbAnnotationIntrospector.class
com.fasterxml.jackson.module.jaxb.JaxbAnnotationModule.class
com.fasterxml.jackson.module.jaxb.ModuleVersion.class
com.fasterxml.jackson.module.jaxb.deser.DataHandlerJsonDeserializer.class
com.fasterxml.jackson.module.jaxb.deser.DomElementJsonDeserializer.class
com.fasterxml.jackson.module.jaxb.deser.XmlAdapterJsonDeserializer.class
com.fasterxml.jackson.module.jaxb.ser.DataHandlerJsonSerializer.class
com.fasterxml.jackson.module.jaxb.ser.DomElementJsonSerializer.class
com.fasterxml.jackson.module.jaxb.ser.XmlAdapterJsonSerializer.class
com/fasterxml/jackson/module/jaxb/VERSION.txt

Pom

jackson-module-jaxb-annotations-2.1.0.pom file content.

<?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.module</groupId>
  <artifactId>jackson-module-jaxb-annotations</artifactId>
  <version>2.1.0</version>

  <name>Jackson-module-JAXB-annotations</name>
  <description>Support for using JAXB annotations as an alternative to "native" Jackson annotations, for configuring data binding.
  </description>
  <url>http://wiki.fasterxml.com/JacksonJAXBAnnotations</url>

  <scm>
    <connection>scm:git:git@github.com:FasterXML/jackson-module-jaxb-annotations.git</connection>
    <developerConnection>scm:git:git@github.com:FasterXML/jackson-module-jaxb-annotations.git</developerConnection>
    <url>http://github.com/FasterXML/jackson-module-jaxb-annotations</url>    
    <tag>jackson-module-jaxb-annotations-2.1.0</tag>
  </scm>

  <properties>
    <osgi.export>
com.fasterxml.jackson.module.jaxb,
com.fasterxml.jackson.module.jaxb.deser,
com.fasterxml.jackson.module.jaxb.ser
    </osgi.export>
    <osgi.import>
javax.activation
,javax.xml.bind
,javax.xml.bind.annotation
,javax.xml.bind.annotation.adapters
,com.fasterxml.jackson.annotation
,com.fasterxml.jackson.core
,com.fasterxml.jackson.core.type
,com.fasterxml.jackson.core.util
,com.fasterxml.jackson.databind
,com.fasterxml.jackson.databind.cfg
,com.fasterxml.jackson.databind.annotation
,com.fasterxml.jackson.databind.deser
,com.fasterxml.jackson.databind.deser.std
,com.fasterxml.jackson.databind.introspect
,com.fasterxml.jackson.databind.jsontype
,com.fasterxml.jackson.databind.jsontype.impl
,com.fasterxml.jackson.databind.module
,com.fasterxml.jackson.databind.node
,com.fasterxml.jackson.databind.ser
,com.fasterxml.jackson.databind.ser.std
,com.fasterxml.jackson.databind.type
,com.fasterxml.jackson.databind.util
,com.fasterxml.jackson.databind.jsonschema
</osgi.import>
  </properties>

  <dependencies>
    <!-- Extends Jackson core and mapper, doesnt need annotations -->
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>2.1.0</version>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.1.0</version>
    </dependency>
    <!--  and actual JAXB annotations... -->
    <dependency>
      <groupId>javax.xml.bind</groupId>
      <artifactId>jaxb-api</artifactId>
      <version>2.2</version>
      <scope>provided</scope>
    </dependency>

     <!-- and for testing, JUnit (or TestNG?) is needed -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>
     <!-- as well as JAX-RS (jsr-311) -->
    <dependency>
      <groupId>javax.ws.rs</groupId>
      <artifactId>jsr311-api</artifactId>
      <version>1.1.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <!--  need to enable filtering to add version info -->
    <resources>
      <resource>
        <directory>${basedir}/src/main/resources</directory>
        <filtering>true</filtering>
      </resource>
    </resources>

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>${surefire.version}</version>
        <configuration>
          <excludes>
            <exclude>com/fasterxml/jackson/**/failing/*.java</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>

  </build>

</project>

POM Entry

<dependency>
   <groupId>com.fasterxml.jackson.module</groupId>
   <artifactId>jackson-module-jaxb-annotations</artifactId>
   <version>2.1.0</version>
</dependency>

Download

If you think the following jackson-module-jaxb-annotations-2.1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jackson-module-jaxb-annotations-2.1.0.jar file




PreviousNext

Related