From 6e65248257a15e6a514e7a79df0b566910a89974 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 24 Apr 2023 11:16:47 -0700 Subject: [PATCH] disable versionCheck for Scala Native --- 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) )