Skip to content

Commit

Permalink
SBT: switch to using slash syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
kitbellew committed Aug 28, 2023
1 parent 6ee753a commit 7b1d2ec
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 @@ -37,11 +37,11 @@ inThisBuild(
),
resolvers ++= Resolver.sonatypeOssRepos("public"),
scalaVersion := "2.12.18",
publishArtifact in packageDoc := sys.env.contains("CI"),
publishArtifact in packageSrc := sys.env.contains("CI")
packageDoc / publishArtifact := sys.env.contains("CI"),
packageSrc / publishArtifact := sys.env.contains("CI")
)
)
skip in publish := true
publish / skip := true

val scalafmtVersion = "3.7.13"
onLoadMessage := s"Welcome to sbt-scalafmt ${version.value} (scalafmt ${scalafmtVersion})"
Expand Down

0 comments on commit 7b1d2ec

Please sign in to comment.