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 "war"
|
|
|
|
id "org.springframework.boot.conventions"
|
|
|
|
}
|
|
|
|
|
|
|
|
description = "Spring Boot Jetty JSP smoke test"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly "jakarta.servlet:jakarta.servlet-api"
|
|
|
|
compileOnly project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty")
|
|
|
|
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
|
|
|
exclude module: "spring-boot-starter-tomcat"
|
|
|
|
}
|
|
|
|
|
|
|
|
providedRuntime platform(project(":spring-boot-project:spring-boot-dependencies"))
|
|
|
|
providedRuntime ("org.eclipse.jetty:apache-jsp") {
|
|
|
|
exclude group: "javax.annotation", module: "javax.annotation-api"
|
|
|
|
}
|
|
|
|
|
|
|
|
runtimeOnly "javax.servlet:jstl"
|
|
|
|
|
|
|
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
|
|
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty")
|
|
|
|
}
|