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-root</artifactId>
|
2016-12-12 21:53:23 +08:00
|
|
|
<version>3.8-SNAPSHOT</version>
|
2014-03-05 00:10:36 +08:00
|
|
|
<relativePath>gatk-root</relativePath>
|
2014-01-30 06:00:06 +08:00
|
|
|
</parent>
|
|
|
|
|
|
2014-03-05 00:10:36 +08:00
|
|
|
<artifactId>gatk-aggregator-public</artifactId>
|
2014-01-30 06:00:06 +08:00
|
|
|
<packaging>pom</packaging>
|
2014-03-05 00:10:36 +08:00
|
|
|
<name>GATK Aggregator Public</name>
|
2014-01-30 06:00:06 +08:00
|
|
|
|
|
|
|
|
<modules>
|
2014-03-05 00:10:36 +08:00
|
|
|
<module>gatk-root</module>
|
2014-01-30 06:00:06 +08:00
|
|
|
<module>gsalib</module>
|
2014-03-05 00:10:36 +08:00
|
|
|
<module>gatk-utils</module>
|
|
|
|
|
<module>gatk-engine</module>
|
|
|
|
|
<module>gatk-tools-public</module>
|
|
|
|
|
<module>external-example</module>
|
2014-01-30 06:00:06 +08:00
|
|
|
<!-- queue optionally enabled as profiles -->
|
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2014-03-05 00:10:36 +08:00
|
|
|
<gatk.basedir>${project.basedir}/..</gatk.basedir>
|
2014-01-30 06:00:06 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<!-- Allow queue to be disabled. -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>queue</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>!disable.queue</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<modules>
|
2014-03-05 00:10:36 +08:00
|
|
|
<module>gatk-queue</module>
|
|
|
|
|
<module>gatk-queue-extensions-generator</module>
|
|
|
|
|
<module>gatk-queue-extensions-public</module>
|
2014-01-30 06:00:06 +08:00
|
|
|
</modules>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
</project>
|