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/maven-v4_0_0.xsd">
<parent>
<artifactId>oss-parent</artifactId>
<groupId>com.fasterxml</groupId>
<version>10</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-afterburner</artifactId>
<name>Jackson-module-Afterburner</name>
<version>2.2.0</version>
<description>Experimental extension to Jackson (http://jackson.codehaus.org)
used to enhance access functionality using bytecode generation.</description>
<url>http://wiki.fasterxml.com/JacksonHome</url>
<prerequisites>
<maven>2.2.1</maven>
</prerequisites>
<scm>
<connection>scm:git:git@github.com:FasterXML/jackson-module-afterburner.git</connection>
<developerConnection>scm:git:git@github.com:FasterXML/jackson-module-afterburner.git</developerConnection>
<tag>jackson-module-afterburner-2.2.0</tag>
<url>http://github.com/FasterXML/jackson-module-afterburner</url>
</scm>
<build>
<plugins>
<plugin>
<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>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>asm:asm</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>com.fasterxml.jackson.module.afterburner.asm</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<osgi.import>com.fasterxml.jackson.core
,com.fasterxml.jackson.core.io
,com.fasterxml.jackson.core.type
,com.fasterxml.jackson.core.util
,com.fasterxml.jackson.databind
,com.fasterxml.jackson.databind.introspect
,com.fasterxml.jackson.databind.module
,com.fasterxml.jackson.databind.deser
,com.fasterxml.jackson.databind.deser.impl
,com.fasterxml.jackson.databind.deser.std
,com.fasterxml.jackson.databind.jsontype
,com.fasterxml.jackson.databind.ser
,com.fasterxml.jackson.databind.ser.impl
,com.fasterxml.jackson.databind.util
,org.objectweb.asm;resolution:=optional</osgi.import>
<packageVersion.dir>com/fasterxml/jackson/module/afterburner</packageVersion.dir>
<packageVersion.package>com.fasterxml.jackson.module.afterburner</packageVersion.package>
<jackson.annotation.version>2.2.0</jackson.annotation.version>
<jackson.core.version>2.2.0</jackson.core.version>
<osgi.export>com.fasterxml.jackson.module.afterburner;version=${project.version},
com.fasterxml.jackson.module.afterburner.deser;version=${project.version},
com.fasterxml.jackson.module.afterburner.ser;version=${project.version}</osgi.export>
</properties>
</project>
|