Skip to content
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

Update scala-library, scala-reflect to 2.13.13 #558

Closed
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
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ lazy val versions = new {
lazy val onlyScala2 = Option(System.getenv("ONLY_SCALA_2")).contains("true")
lazy val onlyScala3 = Option(System.getenv("ONLY_SCALA_3")).contains("true")
lazy val scala3 = if (onlyScala2) List() else List("3.1.0")
lazy val scala2 = if (onlyScala3) List() else List("2.13.8", "2.12.15")
lazy val scala2 = if (onlyScala3) List() else List("2.13.13", "2.12.15")
lazy val scalaVersions = scala2 ::: scala3

lazy val scalaTest = "org.scalatest" %% "scalatest" % versions.scalaTest % Test
Expand Down Expand Up @@ -75,7 +75,7 @@ lazy val noPublish = Seq(
)

lazy val sharedSettings = Seq(
scalaVersion := "2.13.8",
scalaVersion := "2.13.13",
organization := "com.github.valskalla",
libraryDependencies ++= scalaTestScalaCheck :: scalaCheck :: scalaTest :: Nil,
crossScalaVersions := scalaVersions,
Expand Down Expand Up @@ -262,7 +262,6 @@ lazy val scalac212Options = Seq(
"-Ywarn-unused:privates" // Warn if a private member is unused.
)


lazy val scalac213Options = Seq(
"-Werror",
"-Wdead-code",
Expand Down
Loading