Merge pull request #531 from broadinstitute/ks_build_patches
Build patches
This commit is contained in:
commit
e8ea9f58d3
35
pom.xml
35
pom.xml
|
|
@ -715,6 +715,14 @@
|
||||||
<id>unlink-public-testdata</id>
|
<id>unlink-public-testdata</id>
|
||||||
<phase>clean</phase>
|
<phase>clean</phase>
|
||||||
</execution>
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>link-public-qscript</id>
|
||||||
|
<phase>process-test-resources</phase>
|
||||||
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>unlink-public-qscript</id>
|
||||||
|
<phase>clean</phase>
|
||||||
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
@ -802,6 +810,33 @@
|
||||||
<modules>
|
<modules>
|
||||||
<module>private</module>
|
<module>private</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<!-- TODO: All tests require access to private. For now. -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.pyx4j</groupId>
|
||||||
|
<artifactId>maven-junction-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<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>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
<!-- Collection of properties for use during package testing -->
|
<!-- Collection of properties for use during package testing -->
|
||||||
|
|
|
||||||
|
|
@ -31,8 +31,8 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>gov.nist</groupId>
|
<groupId>gov.nist.math</groupId>
|
||||||
<artifactId>Jama</artifactId>
|
<artifactId>jama</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,9 @@
|
||||||
<sting.committests.skipped>true</sting.committests.skipped>
|
<sting.committests.skipped>true</sting.committests.skipped>
|
||||||
<sting.unittests.skipped>${sting.committests.skipped}</sting.unittests.skipped>
|
<sting.unittests.skipped>${sting.committests.skipped}</sting.unittests.skipped>
|
||||||
<sting.integrationtests.skipped>${sting.committests.skipped}</sting.integrationtests.skipped>
|
<sting.integrationtests.skipped>${sting.committests.skipped}</sting.integrationtests.skipped>
|
||||||
|
|
||||||
|
<!-- This flag is used by the package tests to disable re-shading -->
|
||||||
|
<sting.shade.phase>package</sting.shade.phase>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
|
|
@ -128,7 +131,7 @@
|
||||||
<version>2.1</version>
|
<version>2.1</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<phase>package</phase>
|
<phase>${sting.shade.phase}</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>shade</goal>
|
<goal>shade</goal>
|
||||||
</goals>
|
</goals>
|
||||||
|
|
@ -246,4 +249,19 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>packagetests-enabled</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>sting.packagetests.enabled</name>
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<sting.shade.phase>none</sting.shade.phase>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
||||||
|
|
@ -57,6 +57,7 @@
|
||||||
<artifactId>gatk-framework</artifactId>
|
<artifactId>gatk-framework</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
<type>test-jar</type>
|
<type>test-jar</type>
|
||||||
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,14 @@
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
NOTE: Because exec-maven-plugin is used, this aggregator dependency
|
||||||
|
will cause mvn compile to not work. Use mvn test-compile for now.
|
||||||
|
|
||||||
|
See:
|
||||||
|
http://stackoverflow.com/questions/4786881/why-is-test-jar-dependency-required-for-mvn-compile
|
||||||
|
http://jira.codehaus.org/browse/MEXEC-91
|
||||||
|
-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>${project.groupId}</groupId>
|
<groupId>${project.groupId}</groupId>
|
||||||
<artifactId>gatk-framework</artifactId>
|
<artifactId>gatk-framework</artifactId>
|
||||||
|
|
@ -78,6 +86,9 @@
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<!--
|
||||||
|
See note above about exec plugin breaking mvn compile
|
||||||
|
-->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>exec-maven-plugin</artifactId>
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -88,6 +88,7 @@
|
||||||
<artifactId>queue-framework</artifactId>
|
<artifactId>queue-framework</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
<type>test-jar</type>
|
<type>test-jar</type>
|
||||||
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
@ -95,6 +96,7 @@
|
||||||
<artifactId>gatk-framework</artifactId>
|
<artifactId>gatk-framework</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
<type>test-jar</type>
|
<type>test-jar</type>
|
||||||
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,9 +0,0 @@
|
||||||
<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>com.google.code.caliper</groupId>
|
|
||||||
<artifactId>caliper</artifactId>
|
|
||||||
<name>caliper</name>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
</project>
|
|
||||||
Binary file not shown.
|
|
@ -1,9 +0,0 @@
|
||||||
<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>gov.nist</groupId>
|
|
||||||
<artifactId>Jama</artifactId>
|
|
||||||
<name>Jama</name>
|
|
||||||
<version>1.0.2</version>
|
|
||||||
</project>
|
|
||||||
Binary file not shown.
|
|
@ -1,9 +0,0 @@
|
||||||
<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>net.sf.gridscheduler</groupId>
|
|
||||||
<artifactId>drmaa</artifactId>
|
|
||||||
<name>drmaa</name>
|
|
||||||
<version>6.2u5p2</version>
|
|
||||||
</project>
|
|
||||||
|
|
@ -141,8 +141,8 @@
|
||||||
<version>1.6.1</version>
|
<version>1.6.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>gov.nist</groupId>
|
<groupId>gov.nist.math</groupId>
|
||||||
<artifactId>Jama</artifactId>
|
<artifactId>jama</artifactId>
|
||||||
<version>1.0.2</version>
|
<version>1.0.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
@ -201,9 +201,9 @@
|
||||||
<version>0.8.1</version>
|
<version>0.8.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.sf.gridscheduler</groupId>
|
<groupId>us.levk</groupId>
|
||||||
<artifactId>drmaa</artifactId>
|
<artifactId>drmaa-gridengine</artifactId>
|
||||||
<version>6.2u5p2</version>
|
<version>6.2u5</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.sf.snpeff</groupId>
|
<groupId>net.sf.snpeff</groupId>
|
||||||
|
|
@ -531,6 +531,7 @@
|
||||||
</extraArguments>
|
</extraArguments>
|
||||||
<setReactorProjectsProperties>true</setReactorProjectsProperties>
|
<setReactorProjectsProperties>true</setReactorProjectsProperties>
|
||||||
<descriptionProperty>git.version</descriptionProperty>
|
<descriptionProperty>git.version</descriptionProperty>
|
||||||
|
<failOutput>exported</failOutput>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
|
|
||||||
|
|
@ -93,8 +93,8 @@
|
||||||
<artifactId>jets3t</artifactId>
|
<artifactId>jets3t</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.sf.gridscheduler</groupId>
|
<groupId>us.levk</groupId>
|
||||||
<artifactId>drmaa</artifactId>
|
<artifactId>drmaa-gridengine</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.code.gson</groupId>
|
<groupId>com.google.code.gson</groupId>
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Reference in New Issue