From d79d45970cf379b016855eba8a8341169cbf8471 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 10 Jun 2023 23:01:20 +0000 Subject: [PATCH] Update scala-library to 2.12.18 --- build.sbt | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index eb42df4..8e0db1a 100644 --- a/build.sbt +++ b/build.sbt @@ -18,20 +18,28 @@ import Dependencies._ import sbt.Keys.{ resolvers, version } import sbt.addCommandAlias - -lazy val commands = List("clean","bloopInstall", "headerCheck", "scalastyle", "scalafmtCheckAll", "compile:scalafix", "test:scalafix", "shield", - "test") +lazy val commands = List( + "clean", + "bloopInstall", + "headerCheck", + "scalastyle", + "scalafmtCheckAll", + "compile:scalafix", + "test:scalafix", + "shield", + "test" +) lazy val root = project .in(file(".")) .settings( name := "scala-proj-template", version := "0.1", startYear := Some(2019), - crossScalaVersions := Seq("2.12.10", "2.13.1"), + crossScalaVersions := Seq("2.12.18", "2.13.1"), organizationName := "Shankar R C", licenses += ("Apache-2.0", new URL("https://www.apache.org/licenses/LICENSE-2.0.txt")), scalacOptions ++= Seq("-Yrangepos", "-Ywarn-unused"), - scalaVersion := "2.12.10", + scalaVersion := "2.12.18", libraryDependencies ++= compileDeps ++ testDeps, shieldFatalWarnings := true, addCommandAlias("cat", commands.mkString(";")),