diff options
author | Vitaly Takmazov | 2018-11-01 15:28:01 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-11-01 15:28:01 +0300 |
commit | 18993c395484e89ac874422d747da6524d2c72e9 (patch) | |
tree | 44e253384b6da7d127962c4c8620cfe3d5e3944a | |
parent | b965122cdf4f23c07d169c706f2bf49a0b9b3d08 (diff) |
Tomcat -> Undertow
-rw-r--r-- | juick-server/build.gradle | 5 |
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' |