HADOOP-10067 Missing POM dependency on jsr305
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1541862 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3d95049f79
commit
bd5b23f4ce
@ -381,6 +381,8 @@ Release 2.3.0 - UNRELEASED
|
||||
HADOOP-10095. In CodecPool, synchronize pool and codecList separately in
|
||||
order to reduce lock contention. (Nicolas Liochon via szetszwo)
|
||||
|
||||
HADOOP-10067. Missing POM dependency on jsr305 (Robert Rati via stevel)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HADOOP-9748. Reduce blocking on UGI.ensureInitialized (daryn)
|
||||
|
@ -218,6 +218,11 @@
|
||||
<groupId>com.jcraft</groupId>
|
||||
<artifactId>jsch</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.zookeeper</groupId>
|
||||
|
@ -745,6 +745,11 @@
|
||||
<artifactId>hadoop-sls</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
<version>1.3.9</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user