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

Update to sbt slash syntax #192

Merged
merged 1 commit into from
Jun 17, 2021
Merged
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 @@ -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