From 6e26d090edbaa78ff9082d8e868ba963f63a9167 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sun, 22 Oct 2023 17:20:04 +0900 Subject: [PATCH] Fix executable war for Jetty 10 (#3397) --- build.sbt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 2520a8b79..0796d076c 100644 --- a/build.sbt +++ b/build.sbt @@ -159,8 +159,7 @@ executableKey := { val jettyJars = Keys.update.value select configurationFilter(name = ExecutableConfig.name) jettyJars foreach { jar => IO unzip (jar, temp, (name: String) => - (name startsWith "javax/") || - (name startsWith "org/")) + (name startsWith "javax/") || (name startsWith "org/") || (name startsWith "META-INF/services/")) } // include original war file