13 lines
356 B
Groovy
13 lines
356 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("io.undertow:undertow-core")
|
|
api("io.undertow:undertow-servlet")
|
|
api("io.undertow:undertow-websockets-jsr")
|
|
api("org.apache.tomcat.embed:tomcat-embed-el")
|
|
}
|