REM:
1. 更新pom脚手架,移除使用undertow,tomcat更新到9.0.37
This commit is contained in:
HuangXin 2020-08-12 14:47:45 +08:00
parent f80bf47bec
commit aeda69fdb9
1 changed files with 9 additions and 2 deletions

11
pom.xml
View File

@ -41,8 +41,15 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-annotations-api</artifactId>
</exclusion>
</exclusions>
<version>9.0.37</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>