From c480ffb3e4e29efcde830de1c1dbcd16dd36b5a5 Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Sat, 15 Aug 2020 09:38:41 -0700 Subject: [PATCH] Build the thin client with scala 2.12.11 With scala 2.12.12, building the thin client fails aggressively. See https://github.com/sbt/sbt/issues/5756. --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 270d6376f..b66d8d227 100644 --- a/build.sbt +++ b/build.sbt @@ -1100,6 +1100,7 @@ lazy val sbtClientProj = (project in file("client")) .dependsOn(commandProj) .settings( commonBaseSettings, + scalaVersion := "2.12.11", // The thin client does not build with 2.12.12 publish / skip := true, name := "sbt-client", mimaPreviousArtifacts := Set.empty,