aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2020-10-19 20:16:35 +0300
committerGravatar Vitaly Takmazov2020-10-19 20:16:35 +0300
commit52044e7dbb0efca9c6672d154f5edfacccfe4091 (patch)
treecc41d47e35a00ee6030b00e49d4d54a4e59f1c47 /build.gradle
parentaf94a01336a8ec2c44a220548bb9ab409976b69d (diff)
Tomcat -> Undertow
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index c4d0aaf0..a4cf29cf 100644
--- a/build.gradle
+++ b/build.gradle
@@ -117,7 +117,10 @@ dependencies {
compile ('org.springframework.boot:spring-boot-starter-security')
compile ('org.springframework.boot:spring-boot-starter-jdbc')
compile ("org.springframework.boot:spring-boot-starter-security")
- compile ("org.springframework.boot:spring-boot-starter-web")
+ compile ("org.springframework.boot:spring-boot-starter-web") {
+ exclude module: "spring-boot-starter-tomcat"
+ }
+ compile ("org.springframework.boot:spring-boot-starter-undertow")
compile ("org.springframework.boot:spring-boot-starter-json")
compile ("org.springframework.boot:spring-boot-starter-actuator")
compile ('org.springframework.boot:spring-boot-devtools')