This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit bf820302707d10efa2d2b46cb376b49b05cb8592 Author: Calvin Kirs <k...@apache.org> AuthorDate: Fri Mar 15 21:01:30 2024 +0800 [Chore](FE)Remove unused components (#32295) The tomcat-embed-el dependency is primarily used for standardizing EL functionality, which we don't require in our application. Therefore, we can safely remove it. --- fe/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/fe/pom.xml b/fe/pom.xml index e1d4f44d752..d96d4697880 100644 --- a/fe/pom.xml +++ b/fe/pom.xml @@ -467,6 +467,12 @@ under the License. <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jetty</artifactId> <version>${spring.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.tomcat</groupId> + <artifactId>tomcat-embed-el</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> @@ -478,6 +484,10 @@ under the License. <artifactId>spring-boot-starter-web</artifactId> <version>${spring.version}</version> <exclusions> + <exclusion> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-tomcat</artifactId> + </exclusion> <exclusion> <groupId>validator</groupId> <artifactId>hibernate-validator</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org