Skip to content

Update scala-compiler, scala-library to 2.12.17 #245

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 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ lazy val V = new {
val http4s: String = "0.23.12"
val runtime: String = "0.7.0"
val scala: String = "2.13.10"
val scala212: String = "2.12.16"
val scala212: String = "2.12.17"
val scalacheck: String = "1.17.0"
val scalacheckShapeless: String = "1.3.0"
val scalamacros: String = "2.1.1"
Expand Down
6 changes: 3 additions & 3 deletions sbt-exercise/src/sbt-test/sbt-exercise/basic/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ val pluginVersion = System.getProperty("plugin.version")
lazy val content = (project in file("content"))
.enablePlugins(ExerciseCompilerPlugin)
.settings(
scalaVersion := "2.12.16",
scalaVersion := "2.12.17",
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.defaultLocal
Expand All @@ -20,7 +20,7 @@ lazy val content = (project in file("content"))
lazy val contentInPackages = (project in file("contentinpackages"))
.enablePlugins(ExerciseCompilerPlugin)
.settings(
scalaVersion := "2.12.16",
scalaVersion := "2.12.17",
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.defaultLocal
Expand All @@ -35,7 +35,7 @@ lazy val contentInPackages = (project in file("contentinpackages"))
lazy val check = (project in file("check"))
.dependsOn(content, contentInPackages)
.settings(
scalaVersion := "2.12.16",
scalaVersion := "2.12.17",
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.defaultLocal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ val pluginVersion = System.getProperty("plugin.version")

lazy val root = (project in file("."))
.settings(
scalaVersion := "2.12.16",
scalaVersion := "2.12.17",
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.defaultLocal
Expand Down