Skip to content

Commit

Permalink
ODP-2652: Downgrade Jackson to match hadoop (#15)
Browse files Browse the repository at this point in the history
* match version

(cherry picked from commit f74dd74)

* ODP-xxxx: match netty version

(cherry picked from commit be49783)
  • Loading branch information
prabhjyotsingh authored Nov 20, 2024
1 parent cddd507 commit 4255183
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 3 deletions.
44 changes: 41 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
<jersey.version>1.19</jersey.version>
<slf4j.version>1.7.35</slf4j.version>
<jackson.codehaus.version.hadoop>1.9.2</jackson.codehaus.version.hadoop> <!-- transitive, used by hadoop in tests -->
<jackson.version.hadoop>2.13.2</jackson.version.hadoop> <!-- transitive, used by hadoop in tests -->
<jackson.core.version.tez>2.13.2</jackson.core.version.tez> <!-- core, used in tez -->
<jackson.databind.version.tez>2.13.2.2</jackson.databind.version.tez> <!-- databind, used in tez -->
<jackson.version.hadoop>2.12.7</jackson.version.hadoop> <!-- transitive, used by hadoop in tests -->
<jackson.core.version.tez>2.12.7</jackson.core.version.tez> <!-- core, used in tez -->
<jackson.databind.version.tez>2.12.7.1</jackson.databind.version.tez> <!-- databind, used in tez -->
<protobuf.version>2.5.0</protobuf.version>
<snappy-java.version>1.1.10.4</snappy-java.version>
<protoc.path>${env.PROTOC_PATH}</protoc.path>
Expand Down Expand Up @@ -269,6 +269,44 @@
<groupId>org.asynchttpclient</groupId>
<artifactId>async-http-client</artifactId>
<version>2.12.1</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-kqueue</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec-socks</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler-proxy</artifactId>
</exclusion>
<exclusion>
<groupId>com.typesafe.netty</groupId>
<artifactId>netty-reactive-streams</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
45 changes: 45 additions & 0 deletions tez-runtime-library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,51 @@
<groupId>org.asynchttpclient</groupId>
<artifactId>async-http-client</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-kqueue</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-socks</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler-proxy</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.netty</groupId>
<artifactId>netty-reactive-streams</artifactId>
<version>2.0.12</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tez</groupId>
<artifactId>tez-api</artifactId>
Expand Down

0 comments on commit 4255183

Please sign in to comment.