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

Commit dce4079

Browse files
authored
Update to sbt slash syntax (#192)
Signed-off-by: Bendix Saeltz <bendix@saeltz.de>
1 parent 49201be commit dce4079

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ lazy val root = (project in file("."))
2222
.settings(
2323
scalafmtOnCompile := true,
2424
Defaults.itSettings,
25-
scalacOptions in IntegrationTest := (scalacOptions in Compile).value.filterNot(_ == "-Ywarn-dead-code")
25+
IntegrationTest / scalacOptions := (Compile / scalacOptions).value.filterNot(_ == "-Ywarn-dead-code")
2626
)
2727
.settings(sbtGitSettings)
2828
.enablePlugins(
@@ -63,7 +63,7 @@ lazy val scalaDependencies = Seq(
6363
"org.scala-lang.modules" %% "scala-collection-compat" % "2.4.4"
6464
)
6565

66-
scapegoatVersion in ThisBuild := "1.4.8"
66+
ThisBuild / scapegoatVersion := "1.4.8"
6767

6868
lazy val scalacOptions_2_12 = Seq(
6969
"-unchecked",

0 commit comments

Comments
 (0)