From 4e55f2aab431329d743b1ba3337bdff7a14b0e13 Mon Sep 17 00:00:00 2001 From: Scott Frederick Date: Tue, 7 Apr 2020 17:10:45 -0500 Subject: [PATCH] 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 --- spring-boot-tests/spring-boot-deployment-tests/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-tests/spring-boot-deployment-tests/build.gradle b/spring-boot-tests/spring-boot-deployment-tests/build.gradle index f5e564ba0d..fd1a3119d9 100644 --- a/spring-boot-tests/spring-boot-deployment-tests/build.gradle +++ b/spring-boot-tests/spring-boot-deployment-tests/build.gradle @@ -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"))