bitcoin-s/bitcoin-s-docs/docs.sbt
Chris Stewart ccbc68d668 Add -Xfatal-warnings on Scala 2.13 (#1483)
* Add -Xfatal-warnings on Scala 2.13

* Turn off -Xfatal-warnings in docs/
2020-05-29 06:21:56 -05:00

48 lines
1.2 KiB
Scala

lazy val `bitcoin-s` = RootProject(file("."))
lazy val publishWebsite = taskKey[Unit]("Publish website")
publishWebsite := Def
.sequential(
`bitcoin-s` / Compile / unidoc,
Compile / docusaurusPublishGhpages
)
.value
name := "bitcoin-s-docs"
publish / skip := true
////////
/// Mdoc
// Without this we get errors on bad links,
// but those links are to other parts of
// the website, AKA false errors.
// See this issue: https://github.com/scalameta/mdoc/issues/94
mdocExtraArguments := List("--no-link-hygiene")
// these variables gets passed to mdoc, and can be read
// from there
mdocVariables := Map(
"STABLE_VERSION" -> "0.3.0",
"UNSTABLE_VERSION" -> version.value
)
enablePlugins(MdocPlugin, DocusaurusPlugin)
// this expoes the values below as typed values in Scala sources
enablePlugins(BuildInfoPlugin)
buildInfoKeys := Seq[BuildInfoKey](mdocVariables, mdocExtraArguments)
buildInfoPackage := "org.bitcoins.docs"
// Mdoc end
///////
Test / bloopGenerate := None
Compile / bloopGenerate := None
libraryDependencies ++= Deps.docs
//https://stackoverflow.com/questions/26940253/in-sbt-how-do-you-override-scalacoptions-for-console-in-all-configurations
scalacOptions in Compile ~= (_.filterNot(s => s == "-Xfatal-warnings"))