Add jetty-server to classpath for integration test

This commit works around a problem with deploying Boot apps to Wildfly
for integration testing while we investigate the root cause.

See gh-20876
This commit is contained in:
Scott Frederick 2020-04-07 17:10:45 -05:00
parent 257703f546
commit 4e55f2aab4

View File

@ -10,6 +10,7 @@ dependencies {
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
exclude group: "org.hibernate.validator"
}
implementation("org.eclipse.jetty:jetty-server")
intTestImplementation(enforcedPlatform(project(path: ":spring-boot-project:spring-boot-parent")))
intTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))