From bf683478bce0c9120f148118a6162d2d1e9b610e Mon Sep 17 00:00:00 2001 From: Matteo Steccolini Date: Fri, 22 Dec 2023 11:49:14 +0100 Subject: [PATCH] fix for tests not working added required jetty dependencies through spring-boot-starter-jetty so this is the only dependency with scope=testing and transitive dependencies (core jetty libraries) aren't marked as such mvn -P jetty spring-boot:run seems to work --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index 06d1a9c..c452a72 100644 --- a/pom.xml +++ b/pom.xml @@ -354,6 +354,13 @@ test + + org.springframework.boot + spring-boot-starter-jetty + ${spring_boot_version} + test + +