You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
3.2 KiB
89 lines
3.2 KiB
10 months ago
|
<?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.xerial.snappy</groupId>
|
||
|
<artifactId>snappy-java</artifactId>
|
||
|
<packaging>bundle</packaging>
|
||
|
<description>snappy-java: A fast compression/decompression library</description>
|
||
|
<version>1.1.2.4</version>
|
||
|
<name>snappy-java</name>
|
||
|
<organization>
|
||
|
<name>xerial.org</name>
|
||
|
</organization>
|
||
|
<url>https://github.com/xerial/snappy-java</url>
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>The Apache Software License, Version 2.0</name>
|
||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||
|
<distribution>repo</distribution>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<id>leo</id>
|
||
|
<name>Taro L. Saito</name>
|
||
|
<email>leo@xerial.org</email>
|
||
|
<organization>Xerial Project</organization>
|
||
|
<roles>
|
||
|
<role>Architect</role>
|
||
|
<role>Project Manager</role>
|
||
|
<role>Chief Developer</role>
|
||
|
</roles>
|
||
|
<timezone>+9</timezone>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
<issueManagement>
|
||
|
<system>GitHub</system>
|
||
|
<url>http://github.com/xerial/snappy-java/issues/list</url>
|
||
|
</issueManagement>
|
||
|
<inceptionYear>2011</inceptionYear>
|
||
|
<scm>
|
||
|
<connection>scm:git@github.com:xerial/snappy-java.git</connection>
|
||
|
<developerConnection>scm:git:git@github.com:xerial/snappy-java.git</developerConnection>
|
||
|
<url>git@github.com:xerial/snappy-java.git</url>
|
||
|
</scm>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.8.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.plexus</groupId>
|
||
|
<artifactId>plexus-classworlds</artifactId>
|
||
|
<version>2.4</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.xerial.java</groupId>
|
||
|
<artifactId>xerial-core</artifactId>
|
||
|
<version>2.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.xerial</groupId>
|
||
|
<artifactId>xerial-core</artifactId>
|
||
|
<version>3.2.3</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.scalatest</groupId>
|
||
|
<artifactId>scalatest_2.11</artifactId>
|
||
|
<version>2.2.0</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.osgi</groupId>
|
||
|
<artifactId>org.osgi.core</artifactId>
|
||
|
<version>4.3.0</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.novocode</groupId>
|
||
|
<artifactId>junit-interface</artifactId>
|
||
|
<version>0.10</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|