Skip to content

Commit 79ec162

Browse files
committed
MAPREDUCE-5431 Missing pom dependency in MR-client
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1541682 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3221723 commit 79ec162

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

hadoop-common-project/hadoop-common/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@
8383
<artifactId>commons-net</artifactId>
8484
<scope>compile</scope>
8585
</dependency>
86+
<dependency>
87+
<groupId>commons-collections</groupId>
88+
<artifactId>commons-collections</artifactId>
89+
<scope>compile</scope>
90+
</dependency>
8691
<dependency>
8792
<groupId>javax.servlet</groupId>
8893
<artifactId>servlet-api</artifactId>

hadoop-mapreduce-project/CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,9 @@ Release 2.3.0 - UNRELEASED
170170
MAPREDUCE-5613. DefaultSpeculator holds and checks hashmap that is always
171171
empty (Gera Shegalov via Sandy Ryza)
172172

173+
MAPREDUCE-5431. Missing pom dependency in MR-client (Timothy St. Clair
174+
via stevel)
175+
173176
OPTIMIZATIONS
174177

175178
MAPREDUCE-5484. YarnChild unnecessarily loads job conf twice (Sandy Ryza)

hadoop-mapreduce-project/hadoop-mapreduce-client/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,11 @@
158158
<artifactId>commons-lang</artifactId>
159159
<scope>provided</scope>
160160
</dependency>
161+
<dependency>
162+
<groupId>commons-collections</groupId>
163+
<artifactId>commons-collections</artifactId>
164+
<scope>provided</scope>
165+
</dependency>
161166
</dependencies>
162167

163168
<build>

0 commit comments

Comments
 (0)