Maven Repository - POM file for XML jackson-xc 1.9.12 1.9.12

Summary

Xml Compatibility extensions for Jackson.

Extensions that provide interoperability support for Jackson JSON processor's data binding functionality..

Declaration

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

<dependency>
   <groupId>org.codehaus.jackson</groupId>
   <artifactId>jackson-xc</artifactId>
   <version>1.9.12</version>
</dependency>

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

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txtName:GNU Lesser General Public License (LGPL), Version 2.1
URL: http://www.fsf.org/licensing/licenses/lgpl.txt.





Depends on

The jackson-xc-1.9.12 has 2 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-asl 1.9.12
Jackson is a high-performance JSON processor (parser, generator)
7
JSONjackson-mapper-asl 1.9.12
Data Mapper package is a high-performance data binding package built on Jackson JSON processor
23

Packages

The following packages are defined in the jackson-xc-1.9.12.jar

org.codehaus.jackson.xc

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<project>

 <!-- General information -->

  <modelVersion>4.0.0</modelVersion>
  <groupId>org.codehaus.jackson</groupId>
  <artifactId>jackson-xc</artifactId>
  <packaging>jar</packaging>
  <name>Xml Compatibility extensions for Jackson</name>
  <version>1.9.12</version>
  <description>Extensions that provide interoperability support for
Jackson JSON processor's data binding functionality.
</description>

 <!-- Contact information -->

  <url>http://jackson.codehaus.org</url>
  <scm>
    <url>http://xircles.codehaus.org/projects/jackson/repos/primary/repo</url>
  </scm>
  <issueManagement>
    <url>http://jira.codehaus.org/browse/JACKSON</url>
  </issueManagement>
  

 <!-- Dependency information -->
 
  <dependencies>
    <!-- need the core Jackson core and mapper jars
      -->
    <dependency>
      <groupId>org.codehaus.jackson</groupId>
      <artifactId>jackson-core-asl</artifactId>
      <version>1.9.12</version>
    </dependency>
    <dependency>
      <groupId>org.codehaus.jackson</groupId>
      <artifactId>jackson-mapper-asl</artifactId>
      <version>1.9.12</version>
    </dependency>
  </dependencies>

  <!-- Licensing: ASL or GPL -->
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
    <license>
      <name>GNU Lesser General Public License (LGPL), Version 2.1</name>
      <url>http://www.fsf.org/licensing/licenses/lgpl.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <organization>
    <name>FasterXML</name>
    <url>http://fasterxml.com</url>
  </organization>

</project>