|
@@ -102,11 +102,6 @@
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
<artifactId>hadoop-annotations</artifactId>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.mockito</groupId>
|
|
|
- <artifactId>mockito-all</artifactId>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
<!-- 'mvn dependency:analyze' fails to detect use of this dependency -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
@@ -122,11 +117,20 @@
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
</dependency>
|
|
|
+ <!--
|
|
|
+ junit must be before mockito-all on the classpath. mockito-all bundles its
|
|
|
+ own copy of the hamcrest classes, but they don't match our junit version.
|
|
|
+ -->
|
|
|
<dependency>
|
|
|
<groupId>junit</groupId>
|
|
|
<artifactId>junit</artifactId>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mockito</groupId>
|
|
|
+ <artifactId>mockito-all</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
<artifactId>guice</artifactId>
|