aboutsummaryrefslogtreecommitdiff
path: root/juick-server/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-11-01 15:28:01 +0300
committerGravatar Vitaly Takmazov2018-11-01 15:28:01 +0300
commit18993c395484e89ac874422d747da6524d2c72e9 (patch)
tree44e253384b6da7d127962c4c8620cfe3d5e3944a /juick-server/build.gradle
parentb965122cdf4f23c07d169c706f2bf49a0b9b3d08 (diff)
Tomcat -> Undertow
Diffstat (limited to 'juick-server/build.gradle')
-rw-r--r--juick-server/build.gradle5
1 files changed, 5 insertions, 0 deletions
diff --git a/juick-server/build.gradle b/juick-server/build.gradle
index e9415548..69c1f51e 100644
--- a/juick-server/build.gradle
+++ b/juick-server/build.gradle
@@ -58,6 +58,10 @@ asciidoctor {
outputDir = docsOutputDir
}
+configurations {
+ compile.exclude module: 'spring-boot-starter-tomcat'
+}
+
dependencies {
compile project(':juick-common')
compile 'com.github.ben-manes.caffeine:caffeine:2.6.2'
@@ -66,6 +70,7 @@ dependencies {
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-undertow")
compile("org.springframework.boot:spring-boot-starter-websocket")
compile 'org.springframework.boot:spring-boot-devtools'