This is an automated email from the ASF dual-hosted git repository.
dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong.git
The following commit(s) were added to refs/heads/master by this push:
new a258bef [INLONG-3453][TubeMQ] Remove hibernate for tube manager
(#3455)
a258bef is described below
commit a258bef4412fba0ee5bd7eebf104afdfeae75c42
Author: Schnapps <[email protected]>
AuthorDate: Wed Mar 30 11:28:37 2022 +0800
[INLONG-3453][TubeMQ] Remove hibernate for tube manager (#3455)
---
inlong-tubemq/tubemq-manager/pom.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/inlong-tubemq/tubemq-manager/pom.xml
b/inlong-tubemq/tubemq-manager/pom.xml
index f34f744..dcef1d5 100644
--- a/inlong-tubemq/tubemq-manager/pom.xml
+++ b/inlong-tubemq/tubemq-manager/pom.xml
@@ -89,6 +89,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
<version>${spring-boot.version}</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>hibernate-validator</artifactId>
+ <groupId>org.hibernate.validator</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
@@ -100,6 +106,16 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>${spring-boot.version}</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>hibernate-commons-annotations</artifactId>
+ <groupId>org.hibernate.common</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>hibernate-core</artifactId>
+ <groupId>org.hibernate</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>