mirror of
https://github.com/apache/impala.git
synced 2025-12-19 18:12:08 -05:00
IMPALA-12746: Bump jackson.databind to 2.15.3
Also sets dependencyManagement to force using the same version for jackson-databind, jackson-core and jackon-annotations. This is needed because datagenerator depends on kitesdk, which would pull in a very old jackson-core version (2.3.1) and lead to build failures with the newer jackson.databind. Change-Id: I8440426da1395045cf149aca0044286015861e5f Reviewed-on: http://gerrit.cloudera.org:8080/20914 Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com> Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
This commit is contained in:
committed by
Impala Public Jenkins
parent
1415a979eb
commit
c14156eb3a
@@ -279,7 +279,7 @@ export IMPALA_DERBY_VERSION=10.14.2.0
|
||||
export IMPALA_GUAVA_VERSION=31.1-jre
|
||||
export IMPALA_HUDI_VERSION=0.5.0-incubating
|
||||
export IMPALA_HTTP_CORE_VERSION=4.4.14
|
||||
export IMPALA_JACKSON_DATABIND_VERSION=2.13.4.2
|
||||
export IMPALA_JACKSON_DATABIND_VERSION=2.15.3
|
||||
export IMPALA_JSON_SMART_VERSION=2.4.11
|
||||
export IMPALA_JUNIT_VERSION=4.12
|
||||
export IMPALA_KITE_VERSION=1.1.0
|
||||
|
||||
@@ -74,6 +74,11 @@ under the License.
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
||||
16
java/pom.xml
16
java/pom.xml
@@ -359,6 +359,22 @@ under the License.
|
||||
<artifactId>spring-core</artifactId>
|
||||
<version>${springframework.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>${jackson-databind.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-core</artifactId>
|
||||
<version>${jackson-databind.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${jackson-databind.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user