2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "org.springframework.boot.starter"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
description = "Starter for using Undertow as the embedded servlet container. An alternative to spring-boot-starter-tomcat"
|
|
|
|
|
|
|
|
dependencies {
|
2020-01-23 06:09:17 +08:00
|
|
|
api("io.undertow:undertow-core")
|
2022-11-06 08:57:18 +08:00
|
|
|
api("io.undertow:undertow-servlet")
|
|
|
|
api("io.undertow:undertow-websockets-jsr")
|
2021-01-15 17:30:54 +08:00
|
|
|
api("org.apache.tomcat.embed:tomcat-embed-el")
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|