15 lines
429 B
Groovy
15 lines
429 B
Groovy
plugins {
|
|
id "java"
|
|
}
|
|
|
|
description = "Spring Boot Jetty smoke test"
|
|
|
|
dependencies {
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
|
exclude module: "spring-boot-starter-tomcat"
|
|
}
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jetty"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
}
|