Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Commit

Permalink
Update to sbt slash syntax (#192)
Browse files Browse the repository at this point in the history
Signed-off-by: Bendix Saeltz <bendix@saeltz.de>
  • Loading branch information
saeltz authored Jun 17, 2021
1 parent 49201be commit dce4079
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ lazy val root = (project in file("."))
.settings(
scalafmtOnCompile := true,
Defaults.itSettings,
scalacOptions in IntegrationTest := (scalacOptions in Compile).value.filterNot(_ == "-Ywarn-dead-code")
IntegrationTest / scalacOptions := (Compile / scalacOptions).value.filterNot(_ == "-Ywarn-dead-code")
)
.settings(sbtGitSettings)
.enablePlugins(
Expand Down Expand Up @@ -63,7 +63,7 @@ lazy val scalaDependencies = Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % "2.4.4"
)

scapegoatVersion in ThisBuild := "1.4.8"
ThisBuild / scapegoatVersion := "1.4.8"

lazy val scalacOptions_2_12 = Seq(
"-unchecked",
Expand Down

0 comments on commit dce4079

Please sign in to comment.