Skip to content

Commit

Permalink
Use consistent setting syntax in sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz committed Feb 9, 2021
1 parent 92751d9 commit 4d56691
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ThisBuild / githubWorkflowPublish := Seq(WorkflowStep.Sbt(List("docker:publish")

Test / fork := true

missinglinkExcludedDependencies in ThisBuild += moduleFilter(
ThisBuild / missinglinkExcludedDependencies += moduleFilter(
organization = "org.slf4j",
name = "slf4j-api"
)
Expand Down Expand Up @@ -81,7 +81,7 @@ val commonSettings = List(
"com.disneystreaming" %% "weaver-scalacheck" % "0.5.1" % Test
) ++ compilerPlugins,
testFrameworks += new TestFramework("weaver.framework.TestFramework"),
skip in publish := true
publish / skip := true
)

lazy val gitlab = project
Expand All @@ -103,7 +103,7 @@ lazy val gitlab = project
lazy val core = project.settings(commonSettings).settings(name += "-core")

//workaround for docker not accepting + (the default separator in sbt-dynver)
dynverSeparator in ThisBuild := "-"
ThisBuild / dynverSeparator := "-"

val installDhallJson =
ExecCmd(
Expand Down

0 comments on commit 4d56691

Please sign in to comment.