From f6d76c847baba6bd37276385145c86a7b66dbeec Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Tue, 24 Oct 2023 09:13:39 -0700 Subject: [PATCH] Upgrade to Scala 2.12.18 (#441) --- build.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sbt b/build.sbt index e7fd61f0..73a482de 100755 --- a/build.sbt +++ b/build.sbt @@ -16,9 +16,13 @@ Global / onChangedBuildSource := ReloadOnSourceChanges +// Must use Scala 2.12.x for sbt plugins +SCALA_VERSION="2.12.18" + ThisBuild / dynverSeparator := "-" lazy val buildSettings: Seq[Setting[_]] = Seq( + scalaVersion := SCALA_VERSION, organization := "org.xerial.sbt", organizationName := "Xerial project", organizationHomepage := Some(new URL("http://xerial.org/")),