Skip to content

Commit 019268f

Browse files
committed
fix issue
1 parent 1c81d40 commit 019268f

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,16 @@ subprojects {
7575
exclude group:'org.springframework.boot', module:'spring-boot-starter-tomcat'
7676
exclude group:'org.apache.tomcat.embed', module:'tomcat-embed-core'
7777
exclude group:'org.springframework', module:'spring-context'
78+
exclude group:'org.springframework', module:'spring-web'
7879
}
7980

8081
// Correct the above exclusions, group:'org.springframework', module:'spring-context'
8182
implementation 'org.springframework:spring-context:6.2.7'
83+
// Correct the above exclusions, group:'org.springframework', module:'spring-web'
84+
implementation 'org.springframework:spring-web:6.2.8'
8285

8386
// 修正上方排除的 org.apache.tomcat.embed:tomcat-embed-core
84-
implementation 'org.apache.tomcat.embed:tomcat-embed-core:11.0.7'
87+
implementation 'org.apache.tomcat.embed:tomcat-embed-core:11.0.8'
8588
// 修正上方排除的 ch.qos.logback:logback-classic
8689
implementation 'ch.qos.logback:logback-classic:1.5.13'
8790
// 修正上方排除的 ch.qos.logback:logback-core
@@ -191,11 +194,13 @@ project(':dgrv4_Gateway_serv'){
191194
// websocket
192195
implementation ('org.springframework.boot:spring-boot-starter-websocket'){
193196
exclude group:'org.springframework', module:'spring-context'
197+
exclude group:'org.springframework', module:'spring-web'
194198
}
195199

196200
// Correct the above exclusions, group:'org.springframework', module:'spring-context'
197201
implementation 'org.springframework:spring-context:6.2.7'
198-
202+
// Correct the above exclusions, group:'org.springframework', module:'spring-web'
203+
implementation 'org.springframework:spring-web:6.2.8'
199204

200205
implementation 'io.undertow:undertow-core:2.3.17.Final'
201206
implementation 'io.undertow:undertow-websockets-jsr:2.3.17.Final'

0 commit comments

Comments
 (0)