1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>org.msgpack</groupId>
<artifactId>msgpack-java</artifactId>
<packaging>pom</packaging>
<description>Jackson extension that adds support for MessagePack</description>
<version>0.9.6</version>
<name>jackson-dataformat-msgpack</name>
<organization>
<name>MessagePack</name>
<url>http://msgpack.org/</url>
</organization>
<url>http://msgpack.org/</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/msgpack/msgpack-java.git</connection>
<developerConnection>scm:git:git@github.com:msgpack/msgpack-java.git</developerConnection>
<url>github.com/msgpack/msgpack-java.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<developers>
<developer>
<id>frsyuki</id>
<name>Sadayuki Furuhashi</name>
<email>frsyuki@users.sourceforge.jp</email>
</developer>
<developer>
<id>muga</id>
<name>Muga Nishizawa</name>
<email>muga.nishizawa@gmail.com</email>
</developer>
<developer>
<id>oza</id>
<name>Tsuyoshi Ozawa</name>
<url>https://github.com/oza</url>
</developer>
<developer>
<id>komamitsu</id>
<name>Mitsunori Komatsu</name>
<email>komamitsu@gmail.com</email>
</developer>
<developer>
<id>xerial</id>
<name>Taro L. Saito</name>
<email>leo@xerial.org</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.msgpack</groupId>
<artifactId>msgpack-core</artifactId>
<version>0.9.6</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9</version>
</dependency>
<dependency>
<groupId>com.novocode</groupId>
<artifactId>junit-interface</artifactId>
<version>0.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>msgpack-core</module>
<module>msgpack-jackson</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
|