Exclude all transitive dependencies in maven package-tests

This change should allow us to test that the GATK jar has been
correctly packaged at release time, by ensuring that only the
packaged jar + a few test-related dependencies are on the classpath
when tests are run.

Note that we still need to actually test that this works as intended
before we can make this live in the Bamboo release plan.
This commit is contained in:
David Roazen 2014-02-12 14:59:05 -05:00
parent 6facf695ab
commit 6f12c8b0dc
1 changed files with 2 additions and 2 deletions

View File

@ -64,14 +64,14 @@
<version>${project.version}</version> <version>${project.version}</version>
<type>test-jar</type> <type>test-jar</type>
<scope>test</scope> <scope>test</scope>
<!--
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>*</groupId> <groupId>*</groupId>
<artifactId>*</artifactId> <artifactId>*</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
-->
</dependency> </dependency>
<dependency> <dependency>