From 23edec133836edee117f718dfffec99390fff452 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 6 May 2024 01:40:00 +0000 Subject: [PATCH] Update scala-library to 2.13.14 --- build.sbt | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index eb42df4..7d0c37d 100644 --- a/build.sbt +++ b/build.sbt @@ -18,16 +18,24 @@ 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.10", "2.13.14"), organizationName := "Shankar R C", licenses += ("Apache-2.0", new URL("https://www.apache.org/licenses/LICENSE-2.0.txt")), scalacOptions ++= Seq("-Yrangepos", "-Ywarn-unused"),