From 472edcc5bec79e8a03b909a00de6032bbfd777b2 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Sat, 20 Aug 2022 16:48:44 +0200 Subject: [PATCH] chore(build): skip source generation in import for Jmh This change turns `bspEnabled := false` for `Jmh` because it involves source generation meaning that when you do a build import it will also do the source generation which we don't want on import. NOTE: That if there is another release of sbt-jmh ever this is done by default not, but not yet released: https://github.com/sbt/sbt-jmh/pull/207. --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 25da73ca..7340c5d4 100644 --- a/build.sbt +++ b/build.sbt @@ -398,6 +398,7 @@ lazy val bench = project .in(file("tests/benchmarks")) .settings( moduleName := "scip-java-bench", + Jmh / bspEnabled := false, (run / fork) := true, (publish / skip) := true )