2014-01-30 06:00:06 +08:00
|
|
|
<?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>
|
2014-03-05 00:10:36 +08:00
|
|
|
<groupId>org.broadinstitute.gatk</groupId>
|
|
|
|
|
<artifactId>gatk-aggregator</artifactId>
|
2014-07-18 00:06:22 +08:00
|
|
|
<version>3.2</version>
|
2014-01-30 06:00:06 +08:00
|
|
|
<relativePath>../..</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
2014-03-05 00:10:36 +08:00
|
|
|
<artifactId>gatk-queue-package-distribution</artifactId>
|
2014-01-30 06:00:06 +08:00
|
|
|
<packaging>jar</packaging>
|
2014-03-05 00:10:36 +08:00
|
|
|
<name>GATK Queue Package Distribution</name>
|
2014-01-30 06:00:06 +08:00
|
|
|
|
|
|
|
|
<properties>
|
2014-03-05 00:10:36 +08:00
|
|
|
<gatk.basedir>${project.basedir}/../..</gatk.basedir>
|
|
|
|
|
<gatk.unpack.phase>prepare-package</gatk.unpack.phase>
|
|
|
|
|
<gatk.shade.phase>package</gatk.shade.phase>
|
|
|
|
|
<gatk.binary-dist.name>Queue</gatk.binary-dist.name>
|
|
|
|
|
<app.main.class>org.broadinstitute.gatk.queue.QCommandLine</app.main.class>
|
2014-01-30 06:00:06 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- Queue -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2014-03-05 00:10:36 +08:00
|
|
|
<artifactId>gatk-queue</artifactId>
|
2014-01-30 06:00:06 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2014-03-05 00:10:36 +08:00
|
|
|
<artifactId>gatk-package-distribution</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
|
<artifactId>gatk-queue-extensions-distribution</artifactId>
|
2014-01-30 06:00:06 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Scala -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.scala-lang</groupId>
|
|
|
|
|
<artifactId>scala-library</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.scala-lang</groupId>
|
|
|
|
|
<artifactId>scala-compiler</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Picard -->
|
|
|
|
|
<dependency>
|
2014-05-07 06:54:00 +08:00
|
|
|
<groupId>picard</groupId>
|
2014-01-30 06:00:06 +08:00
|
|
|
<artifactId>picard</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- JavaMail -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- JNA, including embedded native libraries -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Contracts for Java -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.cofoja</groupId>
|
|
|
|
|
<artifactId>cofoja</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- snpEff -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.snpeff</groupId>
|
|
|
|
|
<artifactId>snpeff</artifactId>
|
|
|
|
|
</dependency>
|
2014-03-14 22:50:15 +08:00
|
|
|
<!-- Workaround - depend on commons-httpclient to prevent shade from eliminating IgnoreCookiesSpec class -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
|
</dependency>
|
2014-01-30 06:00:06 +08:00
|
|
|
<!-- Required for binary-dist assembly, excluded by shade -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2014-03-05 00:10:36 +08:00
|
|
|
<artifactId>gatk-engine</artifactId>
|
2014-01-30 06:00:06 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<classifier>example-resources</classifier>
|
|
|
|
|
<type>tar.bz2</type>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2014-03-05 00:10:36 +08:00
|
|
|
<artifactId>gatk-queue-extensions-public</artifactId>
|
2014-01-30 06:00:06 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<classifier>example-resources</classifier>
|
|
|
|
|
<type>tar.bz2</type>
|
|
|
|
|
</dependency>
|
2014-02-06 01:17:26 +08:00
|
|
|
|
2014-03-05 00:10:36 +08:00
|
|
|
<!-- Test dependencies to run for for serial tests -->
|
2014-02-06 01:17:26 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2014-03-05 00:10:36 +08:00
|
|
|
<artifactId>gatk-queue</artifactId>
|
2014-02-06 01:17:26 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
2014-02-15 16:46:44 +08:00
|
|
|
<scope>test</scope>
|
2014-02-06 01:17:26 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
2014-03-05 00:10:36 +08:00
|
|
|
<!-- Transitive dependencies for the serial test artifacts above -->
|
2014-02-06 01:17:26 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.caliper</groupId>
|
|
|
|
|
<artifactId>caliper</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2014-01-30 06:00:06 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2014-02-06 01:17:26 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>unit-tests</id>
|
|
|
|
|
<configuration>
|
2014-03-05 00:10:36 +08:00
|
|
|
<skip>${gatk.serialunittests.skipped}</skip>
|
2014-02-06 01:17:26 +08:00
|
|
|
<dependenciesToScan>
|
2014-03-05 00:10:36 +08:00
|
|
|
<scan>org.broadinstitute.gatk:.*</scan>
|
2014-02-06 01:17:26 +08:00
|
|
|
</dependenciesToScan>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>integration-tests</id>
|
|
|
|
|
<configuration>
|
2014-03-05 00:10:36 +08:00
|
|
|
<skip>${gatk.serialintegrationtests.skipped}</skip>
|
2014-02-06 01:17:26 +08:00
|
|
|
<dependenciesToScan>
|
2014-03-05 00:10:36 +08:00
|
|
|
<scan>org.broadinstitute.gatk:.*</scan>
|
2014-02-06 01:17:26 +08:00
|
|
|
</dependenciesToScan>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
2014-03-11 03:20:47 +08:00
|
|
|
<id>queue-tests</id>
|
2014-02-06 01:17:26 +08:00
|
|
|
<configuration>
|
2014-03-05 00:10:36 +08:00
|
|
|
<skip>${gatk.serialqueuetests.skipped}</skip>
|
2014-02-06 01:17:26 +08:00
|
|
|
<dependenciesToScan>
|
2014-03-05 00:10:36 +08:00
|
|
|
<scan>org.broadinstitute.gatk:.*</scan>
|
2014-02-06 01:17:26 +08:00
|
|
|
</dependenciesToScan>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>large-scale-tests</id>
|
|
|
|
|
<configuration>
|
2014-03-05 00:10:36 +08:00
|
|
|
<skip>${gatk.seriallargescaletests.skipped}</skip>
|
2014-02-06 01:17:26 +08:00
|
|
|
<dependenciesToScan>
|
2014-03-05 00:10:36 +08:00
|
|
|
<scan>org.broadinstitute.gatk:.*</scan>
|
2014-02-12 03:03:26 +08:00
|
|
|
</dependenciesToScan>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>knowledge-base-tests</id>
|
|
|
|
|
<configuration>
|
2014-03-05 00:10:36 +08:00
|
|
|
<skip>${gatk.serialknowledgebasetests.skipped}</skip>
|
2014-02-12 03:03:26 +08:00
|
|
|
<dependenciesToScan>
|
2014-03-05 00:10:36 +08:00
|
|
|
<scan>org.broadinstitute.gatk:.*</scan>
|
2014-02-06 01:17:26 +08:00
|
|
|
</dependenciesToScan>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
2014-01-30 06:00:06 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>unpack-direct-dependencies</id>
|
2014-03-05 00:10:36 +08:00
|
|
|
<phase>${gatk.unpack.phase}</phase>
|
2014-01-30 06:00:06 +08:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2014-03-05 00:10:36 +08:00
|
|
|
<id>gatk-executable</id>
|
|
|
|
|
<phase>${gatk.shade.phase}</phase>
|
2014-01-30 06:00:06 +08:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>binary-dist</id>
|
2014-03-05 00:10:36 +08:00
|
|
|
<phase>${gatk.shade.phase}</phase>
|
2014-01-30 06:00:06 +08:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.pyx4j</groupId>
|
|
|
|
|
<artifactId>maven-junction-plugin</artifactId>
|
|
|
|
|
<executions>
|
2014-02-15 01:12:32 +08:00
|
|
|
<execution>
|
|
|
|
|
<id>link-binary-jar</id>
|
2014-03-05 00:10:36 +08:00
|
|
|
<phase>${gatk.shade.phase}</phase>
|
2014-02-15 01:12:32 +08:00
|
|
|
</execution>
|
2014-01-30 06:00:06 +08:00
|
|
|
<execution>
|
|
|
|
|
<id>link-git-release</id>
|
2014-03-05 00:10:36 +08:00
|
|
|
<phase>${gatk.shade.phase}</phase>
|
2014-01-30 06:00:06 +08:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>default-install</id>
|
|
|
|
|
<phase>none</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>install-package</id>
|
|
|
|
|
<phase>install</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
2014-03-05 00:10:36 +08:00
|
|
|
<id>private-testdata</id>
|
2014-01-30 06:00:06 +08:00
|
|
|
<activation>
|
|
|
|
|
<file>
|
2014-03-05 00:10:36 +08:00
|
|
|
<exists>${basedir}/../../private/pom.xml</exists>
|
2014-01-30 06:00:06 +08:00
|
|
|
</file>
|
|
|
|
|
</activation>
|
2014-02-06 14:31:30 +08:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.pyx4j</groupId>
|
|
|
|
|
<artifactId>maven-junction-plugin</artifactId>
|
|
|
|
|
<executions>
|
2014-03-05 00:10:36 +08:00
|
|
|
<!-- TODO: All tests require access to private. For now. -->
|
2014-02-06 14:31:30 +08:00
|
|
|
<execution>
|
|
|
|
|
<id>link-private-testdata</id>
|
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>unlink-private-testdata</id>
|
|
|
|
|
<phase>clean</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>link-private-qscript</id>
|
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>unlink-private-qscript</id>
|
|
|
|
|
<phase>clean</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2014-01-30 06:00:06 +08:00
|
|
|
</profile>
|
2014-02-06 01:17:26 +08:00
|
|
|
<profile>
|
|
|
|
|
<id>packagetests-enabled</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
2014-03-05 00:10:36 +08:00
|
|
|
<name>gatk.packagetests.enabled</name>
|
2014-02-06 01:17:26 +08:00
|
|
|
<value>true</value>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
2014-05-29 00:41:55 +08:00
|
|
|
<gatk.jar.phase>none</gatk.jar.phase>
|
|
|
|
|
<gatk.unpack.phase>none</gatk.unpack.phase>
|
|
|
|
|
<gatk.shade.phase>none</gatk.shade.phase>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>gsadev</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>gsadev</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<gatk.jar.phase>none</gatk.jar.phase>
|
2014-03-05 00:10:36 +08:00
|
|
|
<gatk.unpack.phase>none</gatk.unpack.phase>
|
|
|
|
|
<gatk.shade.phase>none</gatk.shade.phase>
|
2014-02-06 01:17:26 +08:00
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2014-01-30 06:00:06 +08:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
</project>
|