| POM文件内容: |
<?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.dataformat</groupId>
<artifactId>jackson-dataformat-avro</artifactId>
<name>Jackson-dataformat-Avro</name>
<version>2.1.2</version>
<description>Support for reading and writing AVRO-encoded data via Jackson
abstractions.
</description>
<url>http://wiki.fasterxml.com/JacksonExtensionAVRO</url>
<scm>
<connection>scm:git:git@github.com:FasterXML/jackson-dataformat-avro.git</connection>
<developerConnection>scm:git:git@github.com:FasterXML/jackson-dataformat-avro.git</developerConnection>
<url>http://github.com/FasterXML/jackson-dataformat-avro</url>
<tag>jackson-dataformat-avro-2.1.2</tag>
</scm>
<developers>
<developer>
<id>tatu</id>
<name>Tatu Saloranta</name>
<email>tatu@fasterxml.com</email>
</developer>
</developers>
<properties>
<!-- this module is 1.6 only -->
<javac.src.version>1.6</javac.src.version>
<javac.target.version>1.6</javac.target.version>
<!--
| Configuration properties for the OSGi maven-bundle-plugin
-->
<osgi.export>com.fasterxml.jackson.dataformat.avro.*; version=${project.version}
</osgi.export>
</properties>
<dependencies>
<!-- Extends Jackson core; uses avro libs for parsing, generation -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.7.2</version>
</dependency>
<!-- and for testing, JUnit is needed; as well as databinder, annotations -->
<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.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.1.2</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>
</build>
</project>
|