Maven Repository - POM file for JSON jackson-dataformat-smile 2.3.0 2.3.0

Summary

Jackson-dataformat-Smile.

Support for reading and writing Smile ("binary JSON") encoded data using Jackson abstractions (streaming API, data binding, tree model).

Declaration

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

<dependency>
   <groupId>com.fasterxml.jackson.dataformat</groupId>
   <artifactId>jackson-dataformat-smile</artifactId>
   <version>2.3.0</version>
</dependency>

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

Depends on

The jackson-dataformat-smile-2.3.0 has 3 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.0
Core Jackson abstractions, basic JSON streaming API implementation
12
JUnitjunit 4.10
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1957
JEEjackson-databind 2.3.0
General data-binding functionality for Jackson: works on core streaming API
26




Plugin

The following plugins are used in the jackson-dataformat-smile-2.3.0.jar

  1. replacer

Packages

The following packages are defined in the jackson-dataformat-smile-2.3.0.jar

com.fasterxml.jackson.dataformat.smile
com.fasterxml.jackson.dataformat.smile.async

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>11</version>
  </parent>

  <groupId>com.fasterxml.jackson.dataformat</groupId>
  <artifactId>jackson-dataformat-smile</artifactId>
  <version>2.3.0</version>
  <name>Jackson-dataformat-Smile</name>
  <packaging>bundle</packaging>
  <description>Support for reading and writing Smile ("binary JSON")
encoded data using Jackson abstractions (streaming API, data binding,
tree model)
  </description>
  <url>http://wiki.fasterxml.com/JacksonForSmile</url>

  <scm>
    <connection>scm:git:git@github.com:FasterXML/jackson-dataformat-smile.git</connection>
    <developerConnection>scm:git:git@github.com:FasterXML/jackson-dataformat-smile.git</developerConnection>
    <url>http://github.com/FasterXML/jackson-dataformat-smile</url>    
    <tag>jackson-dataformat-smile-2.3.0</tag>
  </scm>

  <properties>
    <jackson.core.version>2.3.0</jackson.core.version>
    <!-- Generate PackageVersion.java into this directory. -->
    <packageVersion.dir>com/fasterxml/jackson/dataformat/smile</packageVersion.dir>
    <packageVersion.package>${project.groupId}.smile</packageVersion.package>
    <!--
     | Configuration properties for the OSGi maven-bundle-plugin
    -->
    <osgi.export>${project.groupId}.smile.*;version=${project.version}
</osgi.export>
    <osgi.import>com.fasterxml.jackson.core
,com.fasterxml.jackson.core.base
,com.fasterxml.jackson.core.format
,com.fasterxml.jackson.core.io
,com.fasterxml.jackson.core.json
,com.fasterxml.jackson.core.sym
,com.fasterxml.jackson.core.util
    </osgi.import>
  </properties>

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

    <!-- and for testing, JUnit is needed, as well as databind -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>${jackson.core.version}</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>