Skip to content

Commit a4cf1a4

Browse files
srowendongjoon-hyun
authored andcommitted
[SPARK-27469][CORE] Update Commons BeanUtils to 1.9.3
## What changes were proposed in this pull request? Unify commons-beanutils deps to latest 1.9.3. This resolves the version inconsistency in Hadoop 2.7's build and also picks up security and bug fixes. ## How was this patch tested? Existing tests. Closes apache#24378 from srowen/SPARK-27469. Authored-by: Sean Owen <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent c58a4fe commit a4cf1a4

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

LICENSE-binary

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ com.google.code.gson:gson
302302
com.google.inject:guice
303303
com.google.inject.extensions:guice-servlet
304304
com.twitter:parquet-hadoop-bundle
305-
commons-beanutils:commons-beanutils-core
306305
commons-cli:commons-cli
307306
commons-dbcp:commons-dbcp
308307
commons-io:commons-io

dev/deps/spark-deps-hadoop-2.7

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ breeze-macros_2.12-0.13.2.jar
2626
breeze_2.12-0.13.2.jar
2727
chill-java-0.9.3.jar
2828
chill_2.12-0.9.3.jar
29-
commons-beanutils-1.7.0.jar
30-
commons-beanutils-core-1.8.0.jar
29+
commons-beanutils-1.9.3.jar
3130
commons-cli-1.2.jar
3231
commons-codec-1.10.jar
3332
commons-collections-3.2.2.jar

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,11 @@
468468
<artifactId>commons-collections</artifactId>
469469
<version>${commons.collections.version}</version>
470470
</dependency>
471+
<dependency>
472+
<groupId>commons-beanutils</groupId>
473+
<artifactId>commons-beanutils</artifactId>
474+
<version>1.9.3</version>
475+
</dependency>
471476
<dependency>
472477
<groupId>org.apache.ivy</groupId>
473478
<artifactId>ivy</artifactId>
@@ -910,6 +915,11 @@
910915
<groupId>org.jboss.netty</groupId>
911916
<artifactId>netty</artifactId>
912917
</exclusion>
918+
<exclusion>
919+
<!-- BeanUtils >= 1.9.0 no longer splits out -core; exclude it -->
920+
<groupId>commons-beanutils</groupId>
921+
<artifactId>commons-beanutils-core</artifactId>
922+
</exclusion>
913923
<exclusion>
914924
<groupId>commons-logging</groupId>
915925
<artifactId>commons-logging</artifactId>

0 commit comments

Comments
 (0)