aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2024-03-26 18:53:00 +0300
committerGravatar Vitaly Takmazov2024-03-26 20:27:04 +0300
commitb09a61b534e6967ddf9427b85285108605f44fe5 (patch)
tree5f4e11ccc574e6d82378a41cd8d11854bd4750c4
parent0cd15b9303b84a9a0246228720326a4e4af02a6f (diff)
Revert "Undertow -> Jetty"
This reverts commit 7e52c9e6e16bb53f375cdb0496a6200525e815dd.
-rw-r--r--pom.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index b8396a61..e8c0fe6f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -72,7 +72,13 @@
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jetty</artifactId>
+ <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>