HDFS-3480. Multiple SLF4J binding warning. Contributed by Vinay

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1349644 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2012-06-13 05:53:48 +00:00
parent 17b4ce909c
commit 401f9ace50
2 changed files with 8 additions and 15 deletions

View File

@ -213,6 +213,8 @@ Release 2.0.1-alpha - UNRELEASED
HDFS-766. Error message not clear for set space quota out of boundary HDFS-766. Error message not clear for set space quota out of boundary
values. (Jon Zuanich via atm) values. (Jon Zuanich via atm)
HDFS-3480. Multiple SLF4J binding warning. (Vinay via eli)
BREAKDOWN OF HDFS-3042 SUBTASKS BREAKDOWN OF HDFS-3042 SUBTASKS
HDFS-2185. HDFS portion of ZK-based FailoverController (todd) HDFS-2185. HDFS portion of ZK-based FailoverController (todd)

View File

@ -106,21 +106,12 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>org.apache.zookeeper</groupId> <groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId> <artifactId>zookeeper</artifactId>
<version>3.4.2</version> <version>3.4.2</version>
<exclusions> <scope>provided</scope>
<exclusion> </dependency>
<!-- otherwise seems to drag in junit 3.8.1 via jline --> <dependency>
<groupId>junit</groupId> <groupId>org.slf4j</groupId>
<artifactId>junit</artifactId> <artifactId>slf4j-log4j12</artifactId>
</exclusion> <scope>provided</scope>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.zookeeper</groupId> <groupId>org.apache.zookeeper</groupId>