Merge pull request #560 from broadinstitute/dr_fix_phone_home_packaging_error

Unconditionally include all of commons-httpclient in the GATK/Queue jars
This commit is contained in:
Eric Banks 2014-03-14 11:54:30 -04:00
commit a0c252f084
3 changed files with 15 additions and 0 deletions

View File

@ -43,6 +43,11 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<!-- Workaround - depend on commons-httpclient to prevent shade from eliminating IgnoreCookiesSpec class -->
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
</dependency>
<!-- Required for binary-dist assembly, excluded by shade -->
<dependency>
<groupId>${project.groupId}</groupId>

View File

@ -67,6 +67,11 @@
<groupId>net.sf.snpeff</groupId>
<artifactId>snpeff</artifactId>
</dependency>
<!-- Workaround - depend on commons-httpclient to prevent shade from eliminating IgnoreCookiesSpec class -->
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
</dependency>
<!-- Required for binary-dist assembly, excluded by shade -->
<dependency>
<groupId>${project.groupId}</groupId>

View File

@ -188,6 +188,11 @@
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>