Fix build errors due to missing dependency

This commit is contained in:
Trustin Lee 2014-12-14 21:29:26 +09:00
parent c718657cf2
commit 80f788cea2
3 changed files with 1 additions and 7 deletions

View File

@ -680,12 +680,11 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- Test dependency for generating a compressed heap dump file --> <!-- Test suite dependency for generating a compressed heap dump file -->
<dependency> <dependency>
<groupId>org.tukaani</groupId> <groupId>org.tukaani</groupId>
<artifactId>xz</artifactId> <artifactId>xz</artifactId>
<version>1.5</version> <version>1.5</version>
<scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>

View File

@ -59,7 +59,6 @@
<dependency> <dependency>
<groupId>org.tukaani</groupId> <groupId>org.tukaani</groupId>
<artifactId>xz</artifactId> <artifactId>xz</artifactId>
<scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -55,10 +55,6 @@
<classifier>${os.detected.classifier}</classifier> <classifier>${os.detected.classifier}</classifier>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies> </dependencies>
<build> <build>