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:
parent
6facf695ab
commit
6f12c8b0dc
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue