Skip to content
This repository has been archived by the owner on May 27, 2020. It is now read-only.

Update scalatest to 3.1.2 #25

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
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lazy val root = (project in file("."))
name := "course-library",
libraryDependencies ++= Seq(
"lambda" %% "course-dsl" % "0.2.8",
"org.scalatest" %% "scalatest" % "3.0.8" % Test
"org.scalatest" %% "scalatest" % "3.1.2" % Test
),
scalacOptions ~= { _.filterNot(Set("-Xlint:missing-interpolator")) },
compile in Compile := (compile in Compile).dependsOn(bundleExamples).value,
Expand All @@ -25,7 +25,7 @@ lazy val scalaCodeExamples = (project in file("scala-code-examples"))
.settings(
libraryDependencies ++= Seq(
"lambda" %% "scala-utils" % "0.2.3",
"org.scalatest" %% "scalatest" % "3.0.8" % Test
"org.scalatest" %% "scalatest" % "3.1.2" % Test
),
githubTokenSource := TokenSource.GitConfig("github.token") || TokenSource.Environment("GITHUB_TOKEN")
)
Expand Down