diff options
author | Vitaly Takmazov | 2023-03-11 14:36:45 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-03-11 14:36:45 +0300 |
commit | 23f8b345b940841f5801245f191520698904779e (patch) | |
tree | 3a193b1717d2ab712cab3a8559835f0509122d68 /pom.xml | |
parent | 65ca0b7f8565da2e1ce87c219c2fd53e30be7f1f (diff) |
Revert "Switch to Tomcat and omit its exceptions from logs"
This reverts commit 64e6b703b7fa50a31dc0b73ec85230aa99c77bd5.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -35,6 +35,12 @@ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> + <exclusions> + <exclusion> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-tomcat</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> @@ -66,6 +72,16 @@ <artifactId>spring-boot-starter-json</artifactId> </dependency> <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-undertow</artifactId> + <exclusions> + <exclusion> + <groupId>io.undertow</groupId> + <artifactId>undertow-websockets-jsr</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> </dependency> |