From 159bd218cf49de9c7bfb28a90db46590d39f1c05 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 24 Apr 2023 11:28:22 -0700 Subject: [PATCH] disable versionCheck for Scala Native (#592) --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 7933a406..94358e35 100644 --- a/build.sbt +++ b/build.sbt @@ -147,6 +147,7 @@ lazy val compat = new MultiScalaCrossProject( } }, versionPolicyIntention := Compatibility.None, + versionCheck := {}, // I don't understand why this fails otherwise?! oh well Test / fork := false // Scala Native cannot run forked tests ).nativeEnablePlugins(ScalaNativeJUnitPlugin) )