Skip to content

Commit 6902c91

Browse files
committed
fix SPARK-1629: Spark Core missing commons-lang dependence
1 parent 0da4bc3 commit 6902c91

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

core/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@
113113
<groupId>commons-net</groupId>
114114
<artifactId>commons-net</artifactId>
115115
</dependency>
116+
<dependency>
117+
<groupId>commons-lang</groupId>
118+
<artifactId>commons-lang</artifactId>
119+
</dependency>
116120
<dependency>
117121
<groupId>${akka.group}</groupId>
118122
<artifactId>akka-remote_${scala.binary.version}</artifactId>

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,11 @@
371371
<artifactId>commons-net</artifactId>
372372
<version>2.2</version>
373373
</dependency>
374+
<dependency>
375+
<groupId>commons-lang</groupId>
376+
<artifactId>commons-lang</artifactId>
377+
<version>2.6</version>
378+
</dependency>
374379
<dependency>
375380
<groupId>io.netty</groupId>
376381
<artifactId>netty-all</artifactId>

0 commit comments

Comments
 (0)