From dce407952a8b9befd48dbc92b26ac39acf742f96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bendix=20S=C3=A4ltz?= Date: Thu, 17 Jun 2021 11:59:32 +0200 Subject: [PATCH] Update to sbt slash syntax (#192) Signed-off-by: Bendix Saeltz --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 4f552c8..e1b9526 100644 --- a/build.sbt +++ b/build.sbt @@ -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( @@ -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",