Merge pull request #522 from broadinstitute/ks_build_external_example

Adding the external example to the build.
This commit is contained in:
kshakir 2014-02-15 01:29:38 +08:00
commit 7215bfe825
3 changed files with 10 additions and 3 deletions

1
.gitignore vendored
View File

@ -25,3 +25,4 @@ lib/
out/
/atlassian-ide-plugin.xml
maven-metadata-local.xml
dependency-reduced-pom.xml

View File

@ -6,7 +6,7 @@
<artifactId>external-example</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>external-example</name>
<name>GATK External Example</name>
<properties>
<sting.version>2.8-SNAPSHOT</sting.version>
@ -21,6 +21,11 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.build.timestamp.format>yyyy/MM/dd HH:mm:ss</maven.build.timestamp.format>
<!-- NOTE: Currently the testing infrastructure for walkers does not support running outside the Broad. -->
<sting.committests.skipped>true</sting.committests.skipped>
<sting.unittests.skipped>${sting.committests.skipped}</sting.unittests.skipped>
<sting.integrationtests.skipped>${sting.committests.skipped}</sting.integrationtests.skipped>
</properties>
<repositories>
@ -196,7 +201,7 @@
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip>
<skip>${sting.unittests.skipped}</skip>
<includes>
<include>**/*UnitTest.class</include>
</includes>
@ -227,7 +232,7 @@
</goals>
<!-- run integration tests -->
<configuration>
<skip>false</skip>
<skip>${sting.integrationtests.skipped}</skip>
<includes>
<include>**/*IntegrationTest.class</include>
</includes>

View File

@ -19,6 +19,7 @@
<module>sting-utils</module>
<module>gatk-framework</module>
<module>gatk-package</module>
<module>external-example</module>
<!-- queue optionally enabled as profiles -->
</modules>