Skip to content

Update scala-library to 2.12.19 #174

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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.19", "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.19",
libraryDependencies ++= compileDeps ++ testDeps,
shieldFatalWarnings := true,
addCommandAlias("cat", commands.mkString(";")),
Expand Down