This is an automated email from the ASF dual-hosted git repository.
kirs pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new 978fcf12b65 [Chore](dependnecies)remove javax.el and upgrade jackson
to 2.16.0 (#38843) (#39389)
978fcf12b65 is described below
commit 978fcf12b657b67325bc266d5b64392a5f73e395
Author: Calvin Kirs <[email protected]>
AuthorDate: Mon Sep 9 21:58:47 2024 +0800
[Chore](dependnecies)remove javax.el and upgrade jackson to 2.16.0 (#38843)
(#39389)
…
## Proposed changes
javax.el is the API for Java Expression Language, which provides a
simple and flexible way for Java Web applications to access and
manipulate data. EL expressions are commonly used in JSP pages, but we
are not involved in their use here, so I removed it.
- upgrade jackson to 2.16.0
(cherry picked from commit 33a0ea5565c2e0d7e5909ca3b512fb0b539f05f4)
#38843
Issue Number: close #xxx
<!--Describe your changes.-->
---
fe/pom.xml | 50 ++++++++++++++------------------------------------
1 file changed, 14 insertions(+), 36 deletions(-)
diff --git a/fe/pom.xml b/fe/pom.xml
index 768f40c3337..1a8ca426bfb 100644
--- a/fe/pom.xml
+++ b/fe/pom.xml
@@ -251,7 +251,7 @@ under the License.
<commons-validator.version>1.7</commons-validator.version>
<gson.version>2.10.1</gson.version>
<guava.version>32.1.2-jre</guava.version>
- <jackson.version>2.15.2</jackson.version>
+ <jackson.version>2.16.0</jackson.version>
<java-cup.version>0.11-a-czt02-cdh</java-cup.version>
<javassist.version>3.18.2-GA</javassist.version>
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
@@ -409,6 +409,13 @@ under the License.
</profiles>
<dependencyManagement>
<dependencies>
+ <dependency>
+ <groupId>com.fasterxml.jackson</groupId>
+ <artifactId>jackson-bom</artifactId>
+ <version>${jackson.version}</version>
+ <scope>import</scope>
+ <type>pom</type>
+ </dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
@@ -445,6 +452,12 @@ under the License.
<scope>import</scope>
<type>pom</type>
</dependency>
+ <dependency>
+ <groupId>org.glassfish</groupId>
+ <artifactId>javax.el</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
<dependency>
<groupId>io.airlift</groupId>
<artifactId>aircompressor</artifactId>
@@ -742,17 +755,6 @@ under the License.
<artifactId>guava-testlib</artifactId>
<version>${guava.version}</version>
</dependency>
- <!--
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- <version>${jackson.version}</version>
- </dependency>
<!--
https://mvnrepository.com/artifact/net.sourceforge.czt.dev/java-cup -->
<dependency>
<groupId>net.sourceforge.czt.dev</groupId>
@@ -976,30 +978,6 @@ under the License.
<artifactId>generex</artifactId>
<version>${generex.version}</version>
</dependency>
- <!--
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
-->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-annotations</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <!--
https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
-->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <!--
https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml
-->
- <dependency>
- <groupId>com.fasterxml.jackson.dataformat</groupId>
- <artifactId>jackson-dataformat-yaml</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <!--
https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-jaxb-annotations
-->
- <dependency>
- <groupId>com.fasterxml.jackson.module</groupId>
- <artifactId>jackson-module-jaxb-annotations</artifactId>
- <version>${jackson.version}</version>
- </dependency>
<!--
https://mvnrepository.com/artifact/io.fabric8/kubernetes-client -->
<dependency>
<groupId>io.fabric8</groupId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]