HADOOP-12515. Mockito dependency is missing in hadoop-kafka module. Contributed by Kai Zheng.

This commit is contained in:
Akira Ajisaka 2015-10-27 20:17:16 +09:00
parent 96677bef00
commit bcb2386e39
2 changed files with 8 additions and 0 deletions

View File

@ -513,6 +513,9 @@ Trunk (Unreleased)
HADOOP-12364. Deleting pid file after stop is causing the daemons to
keep restarting (Siqi Li via aw)
HADOOP-12515. Mockito dependency is missing in hadoop-kafka module.
(Kai Zheng via aajisaka)
OPTIMIZATIONS
HADOOP-7761. Improve the performance of raw comparisons. (todd)

View File

@ -125,5 +125,10 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>