You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
plugins {
|
|
|
|
id 'org.springframework.boot.starter'
|
|
|
|
}
|
|
|
|
|
|
|
|
description = "Starter for using Jetty as the embedded servlet container. An alternative to spring-boot-starter-tomcat"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
|
|
|
api 'jakarta.servlet:jakarta.servlet-api'
|
|
|
|
api 'jakarta.websocket:jakarta.websocket-api'
|
|
|
|
api 'org.eclipse.jetty:jetty-servlets'
|
|
|
|
api ('org.eclipse.jetty:jetty-webapp') {
|
|
|
|
exclude group: 'javax.servlet', module: 'javax.servlet-api'
|
|
|
|
}
|
|
|
|
api ('org.eclipse.jetty.websocket:websocket-server') {
|
|
|
|
exclude group: 'javax.servlet', module: 'javax.servlet-api'
|
|
|
|
}
|
|
|
|
api ('org.eclipse.jetty.websocket:javax-websocket-server-impl') {
|
|
|
|
exclude group: 'javax.annotation', module: 'javax.annotation-api'
|
|
|
|
exclude group: 'javax.servlet', module: 'javax.servlet-api'
|
|
|
|
exclude group: 'javax.websocket', module: 'javax.websocket-api'
|
|
|
|
exclude group: 'javax.websocket', module: 'javax.websocket-client-api'
|
|
|
|
}
|
|
|
|
api 'org.glassfish:jakarta.el'
|
|
|
|
}
|