From 1a2f5da05570fa7259b699b75a9f7883d0ee9794 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sat, 12 Nov 2022 20:17:56 +0900 Subject: [PATCH] Suppress "scanned from multiple locations" warnings in development (#3194) --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index fc48cdae2..43df9fbd8 100644 --- a/build.sbt +++ b/build.sbt @@ -287,5 +287,6 @@ Test / testOptions ++= { Jetty / javaOptions ++= Seq( "-Xdebug", - "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000" + "-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000", + "-Dorg.eclipse.jetty.annotations.AnnotationParser.LEVEL=OFF" )