POM文件内容: |
<?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.jackson</groupId>
<artifactId>jackson-parent</artifactId>
<version>2.6.2</version>
</parent>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-smile</artifactId>
<version>2.6.4</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.6.4</tag>
</scm>
<properties>
<version.jackson.core>2.6.4</version.jackson.core>
<packageVersion.dir>com/fasterxml/jackson/dataformat/smile</packageVersion.dir>
<packageVersion.package>${project.groupId}.smile</packageVersion.package>
<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>${version.jackson.core}</version>
</dependency>
<!-- and for testing we need databind-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson.core}</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.plugin.surefire}</version>
<configuration>
<excludes>
<exclude>com/fasterxml/jackson/**/failing/*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
|