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
|
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.broadinstitute</groupId>
<artifactId>http-nio</artifactId>
<packaging>jar</packaging>
<name>http-nio</name>
<version>VERSION_PACKAGE</version>
<description>HTTP/S FIleSystem provider for Java NIO.2</description>
<url>http://github.com/lbergelson/http-nio</url>
<licenses>
<license>
<name>BSD-3-Clause</name>
<url>https://github.com/lbergelson/http-nio/blob/master/LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>MagicDGS</id>
<name>Daniel Gómez-Sánchez</name>
<url>https://github.com/magicDGS</url>
</developer>
<developer>
<id>gatkdev</id>
<name>GATK Development Team</name>
<email>gatk-dev-public@broadinstitute.org</email>
</developer>
</developers>
<scm>
<url>git@github.com:lbergelson/http-nio.git</url>
<connection>scm:git:git@github.com:lbergelson/htt-nio.git</connection>
</scm>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>debian</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>debian</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>debian</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>debian</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|