13 lines
381 B
Groovy
13 lines
381 B
Groovy
plugins {
|
|
id "org.springframework.boot.starter"
|
|
}
|
|
|
|
description = "Starter for using Undertow as the embedded servlet container. An alternative to spring-boot-starter-tomcat"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-undertow"))
|
|
api("io.undertow:undertow-servlet")
|
|
api("io.undertow:undertow-websockets-jsr")
|
|
api("org.apache.tomcat.embed:tomcat-embed-el")
|
|
}
|