update 升级tomcat
This commit is contained in:
@@ -46,6 +46,20 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>tomcat-embed-core</artifactId>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>tomcat-embed-el</artifactId>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>tomcat-embed-websocket</artifactId>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!-- websocket -->
|
||||
<dependency>
|
||||
@@ -69,7 +83,28 @@
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-validation</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- tomcat -->
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-core</artifactId>
|
||||
<version>${tomcat.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-el</artifactId>
|
||||
<version>${tomcat.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-websocket</artifactId>
|
||||
<version>${tomcat.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>tomcat-embed-core</artifactId>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!-- commons -->
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
|
||||
Reference in New Issue
Block a user