aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-03-11 14:36:45 +0300
committerGravatar Vitaly Takmazov2023-03-11 14:36:45 +0300
commit23f8b345b940841f5801245f191520698904779e (patch)
tree3a193b1717d2ab712cab3a8559835f0509122d68 /pom.xml
parent65ca0b7f8565da2e1ce87c219c2fd53e30be7f1f (diff)
Revert "Switch to Tomcat and omit its exceptions from logs"
This reverts commit 64e6b703b7fa50a31dc0b73ec85230aa99c77bd5.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 6d8981d0..b2c11504 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>