Skip to content

Commit 4472a9f

Browse files
srowendongjoon-hyun
authored andcommitted
[SPARK-27469][BUILD][BRANCH-2.4] Unify commons-beanutils deps to latest 1.9.3
## What changes were proposed in this pull request? Unify commons-beanutils deps to latest 1.9.3 Backport of #24378 ## How was this patch tested? Existing tests. Closes #24433 from srowen/SPARK-27469.2. Authored-by: Sean Owen <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 3ba71e9 commit 4472a9f

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

LICENSE-binary

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,6 @@ com.google.code.gson:gson
305305
com.google.inject:guice
306306
com.google.inject.extensions:guice-servlet
307307
com.twitter:parquet-hadoop-bundle
308-
commons-beanutils:commons-beanutils-core
309308
commons-cli:commons-cli
310309
commons-dbcp:commons-dbcp
311310
commons-io:commons-io

dev/deps/spark-deps-hadoop-2.6

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ calcite-core-1.2.0-incubating.jar
2929
calcite-linq4j-1.2.0-incubating.jar
3030
chill-java-0.9.3.jar
3131
chill_2.11-0.9.3.jar
32-
commons-beanutils-1.7.0.jar
33-
commons-beanutils-core-1.8.0.jar
32+
commons-beanutils-1.9.3.jar
3433
commons-cli-1.2.jar
3534
commons-codec-1.10.jar
3635
commons-collections-3.2.2.jar

dev/deps/spark-deps-hadoop-2.7

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ calcite-core-1.2.0-incubating.jar
2929
calcite-linq4j-1.2.0-incubating.jar
3030
chill-java-0.9.3.jar
3131
chill_2.11-0.9.3.jar
32-
commons-beanutils-1.7.0.jar
33-
commons-beanutils-core-1.8.0.jar
32+
commons-beanutils-1.9.3.jar
3433
commons-cli-1.2.jar
3534
commons-codec-1.10.jar
3635
commons-collections-3.2.2.jar

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,11 @@
434434
<artifactId>commons-collections</artifactId>
435435
<version>${commons.collections.version}</version>
436436
</dependency>
437+
<dependency>
438+
<groupId>commons-beanutils</groupId>
439+
<artifactId>commons-beanutils</artifactId>
440+
<version>1.9.3</version>
441+
</dependency>
437442
<dependency>
438443
<groupId>org.apache.ivy</groupId>
439444
<artifactId>ivy</artifactId>
@@ -877,6 +882,11 @@
877882
<groupId>org.jboss.netty</groupId>
878883
<artifactId>netty</artifactId>
879884
</exclusion>
885+
<exclusion>
886+
<!-- BeanUtils >= 1.9.0 no longer splits out -core; exclude it -->
887+
<groupId>commons-beanutils</groupId>
888+
<artifactId>commons-beanutils-core</artifactId>
889+
</exclusion>
880890
<exclusion>
881891
<groupId>commons-logging</groupId>
882892
<artifactId>commons-logging</artifactId>

0 commit comments

Comments
 (0)