This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch branch-1.7 in repository https://gitbox.apache.org/repos/asf/orc.git
commit 2d94286fcdf93d44281f640b3233fa6a6d249209 Author: Dongjoon Hyun <[email protected]> AuthorDate: Fri Nov 12 23:32:00 2021 -0800 ORC-1051: Update benchmark dependencies (#964) ### What changes were proposed in this pull request? This PR aims to update the transitive dependencies of Spark 3.2.0. - aircompressor: 0.16 -> 0.21 - Netty-all: 4.1.67.Final -> 4.1.68.Final - scala-librari: 2.12.10 -> 2.12.15 - spark.jackson.version: 2.10.0 -> 2.12.3 ### Why are the changes needed? When ORC-1037 updates to Spark 3.2.0, these dependencies are missed. ### How was this patch tested? Pass the CIs. (cherry picked from commit 2c3727b282924f6cb85f40daa86cf4391e639ba8) Signed-off-by: Dongjoon Hyun <[email protected]> --- java/bench/pom.xml | 6 +++--- java/bench/spark/pom.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/java/bench/pom.xml b/java/bench/pom.xml index 0084e19..9053486 100644 --- a/java/bench/pom.xml +++ b/java/bench/pom.xml @@ -106,12 +106,12 @@ <dependency> <groupId>io.airlift</groupId> <artifactId>aircompressor</artifactId> - <version>0.16</version> + <version>0.21</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> - <version>4.1.67.Final</version> + <version>4.1.68.Final</version> <scope>runtime</scope> </dependency> <dependency> @@ -449,7 +449,7 @@ <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> - <version>2.12.10</version> + <version>2.12.15</version> </dependency> <dependency> <groupId>org.slf4j</groupId> diff --git a/java/bench/spark/pom.xml b/java/bench/spark/pom.xml index c5f1b96..94e54f2 100644 --- a/java/bench/spark/pom.xml +++ b/java/bench/spark/pom.xml @@ -36,7 +36,7 @@ <maven.compiler.useIncrementalCompilation>false</maven.compiler.useIncrementalCompilation> <!-- Spark Jackson version may not be same as ORC --> - <spark.jackson.version>2.10.0</spark.jackson.version> + <spark.jackson.version>2.12.3</spark.jackson.version> </properties> <dependencies>
