114 lines
3.7 KiB
XML
114 lines
3.7 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.broadinstitute.gatk</groupId>
|
|
<artifactId>gatk-aggregator</artifactId>
|
|
<version>3.7-SNAPSHOT</version>
|
|
<relativePath>../..</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>gatk-tools-protected</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>GATK Tools Protected</name>
|
|
|
|
<properties>
|
|
<gatk.basedir>${project.basedir}/../..</gatk.basedir>
|
|
<gatk.packagetests.artifactId>gatk-package-distribution</gatk.packagetests.artifactId>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>gatk-engine</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>gatk-tools-public</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.sf.jgrapht</groupId>
|
|
<artifactId>jgrapht</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>gov.nist.math</groupId>
|
|
<artifactId>jama</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>it.unimi.dsi</groupId>
|
|
<artifactId>fastutil</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.broadinstitute</groupId>
|
|
<artifactId>picard</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>gatk-utils</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>gatk-engine</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.caliper</groupId>
|
|
<artifactId>caliper</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>extract-resource-bundle</id>
|
|
<phase>prepare-package</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>package-unittests</id>
|
|
</execution>
|
|
<execution>
|
|
<id>package-integrationtests</id>
|
|
</execution>
|
|
<execution>
|
|
<id>package-largescaletests</id>
|
|
</execution>
|
|
<execution>
|
|
<id>package-knowledgebasetests</id>
|
|
</execution>
|
|
<execution>
|
|
<id>package-queuetests</id>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|