Skip to content

Commit f2ef8b7

Browse files
committed
remove hibernate-validator
1 parent 8036c22 commit f2ef8b7

File tree

14 files changed

+70
-0
lines changed
  • assembly/dss-package
  • dss-apps
  • dss-commons/dss-sender-service
  • dss-framework
    • dss-appconn-framework
    • dss-framework-orchestrator-server
    • dss-framework-project-server
    • framework-plugins
      • dss-framework-migrate-server
      • dss-framework-orchestrator-publish
  • dss-git/dss-git-server
  • dss-orchestrator
    • dss-orchestrator-core
    • orchestrators/dss-workflow
  • plugins/dolphinscheduler/dss-dolphinscheduler-token

14 files changed

+70
-0
lines changed

assembly/dss-package/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,12 @@
160160
<groupId>org.glassfish.jersey.ext</groupId>
161161
<artifactId>jersey-bean-validation</artifactId>
162162
<version>${jersey.version}</version>
163+
<exclusions>
164+
<exclusion>
165+
<artifactId>hibernate-validator</artifactId>
166+
<groupId>org.hibernate</groupId>
167+
</exclusion>
168+
</exclusions>
163169
</dependency>
164170

165171
<dependency>

dss-apps/dss-apiservice-server/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,10 @@
186186
<artifactId>spring-web</artifactId>
187187
<groupId>org.springframework</groupId>
188188
</exclusion>
189+
<exclusion>
190+
<artifactId>hibernate-validator</artifactId>
191+
<groupId>org.hibernate</groupId>
192+
</exclusion>
189193
</exclusions>
190194
</dependency>
191195
<dependency>

dss-apps/dss-scriptis-server/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@
188188
<artifactId>spring-web</artifactId>
189189
<groupId>org.springframework</groupId>
190190
</exclusion>
191+
<exclusion>
192+
<artifactId>hibernate-validator</artifactId>
193+
<groupId>org.hibernate</groupId>
194+
</exclusion>
191195
</exclusions>
192196
</dependency>
193197
<dependency>

dss-commons/dss-sender-service/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545
<artifactId>commons-fileupload</artifactId>
4646
<groupId>commons-fileupload</groupId>
4747
</exclusion>
48+
<exclusion>
49+
<artifactId>hibernate-validator</artifactId>
50+
<groupId>org.hibernate</groupId>
51+
</exclusion>
4852
</exclusions>
4953
</dependency>
5054
<dependency>

dss-framework/dss-appconn-framework/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@
7070
<artifactId>linkis-common</artifactId>
7171
<groupId>org.apache.linkis</groupId>
7272
</exclusion>
73+
<exclusion>
74+
<artifactId>hibernate-validator</artifactId>
75+
<groupId>org.hibernate</groupId>
76+
</exclusion>
7377
</exclusions>
7478
</dependency>
7579
<dependency>

dss-framework/dss-framework-orchestrator-server/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,10 @@
132132
<artifactId>netty-all</artifactId>
133133
<groupId>io.netty</groupId>
134134
</exclusion>
135+
<exclusion>
136+
<artifactId>hibernate-validator</artifactId>
137+
<groupId>org.hibernate</groupId>
138+
</exclusion>
135139
</exclusions>
136140
</dependency>
137141

dss-framework/dss-framework-project-server/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,12 @@
126126
<artifactId>jersey-bean-validation</artifactId>
127127
<version>${jersey.version}</version>
128128
<scope>provided</scope>
129+
<exclusions>
130+
<exclusion>
131+
<artifactId>hibernate-validator</artifactId>
132+
<groupId>org.hibernate</groupId>
133+
</exclusion>
134+
</exclusions>
129135
</dependency>
130136
<dependency>
131137
<groupId>org.apache.linkis</groupId>
@@ -137,6 +143,10 @@
137143
<artifactId>linkis-common</artifactId>
138144
<groupId>org.apache.linkis</groupId>
139145
</exclusion>
146+
<exclusion>
147+
<artifactId>hibernate-validator</artifactId>
148+
<groupId>org.hibernate</groupId>
149+
</exclusion>
140150
</exclusions>
141151
</dependency>
142152
<dependency>

dss-framework/framework-plugins/dss-framework-migrate-server/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@
6666
<artifactId>linkis-rpc</artifactId>
6767
<version>${linkis.version}</version>
6868
<scope>provided</scope>
69+
<exclusions>
70+
<exclusion>
71+
<artifactId>hibernate-validator</artifactId>
72+
<groupId>org.hibernate</groupId>
73+
</exclusion>
74+
</exclusions>
6975
</dependency>
7076
</dependencies>
7177

dss-framework/framework-plugins/dss-framework-orchestrator-publish/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,12 @@
8484
<artifactId>linkis-rpc</artifactId>
8585
<version>${linkis.version}</version>
8686
<scope>provided</scope>
87+
<exclusions>
88+
<exclusion>
89+
<artifactId>hibernate-validator</artifactId>
90+
<groupId>org.hibernate</groupId>
91+
</exclusion>
92+
</exclusions>
8793
</dependency>
8894
<dependency>
8995
<groupId>org.springframework</groupId>

dss-git/dss-git-server/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@
5353
<groupId>org.springframework.boot</groupId>
5454
<artifactId>spring-boot-starter-log4j2</artifactId>
5555
</exclusion>
56+
<exclusion>
57+
<artifactId>hibernate-validator</artifactId>
58+
<groupId>org.hibernate</groupId>
59+
</exclusion>
5660
</exclusions>
5761
</dependency>
5862
<dependency>

0 commit comments

Comments
 (0)