mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-23 22:56:52 +01:00
This allows working on the website without opening sbt at all. bloop run docs -- --watch compiles all Mdoc sources and outputs it into the correct directory.
31 lines
1.1 KiB
Scala
31 lines
1.1 KiB
Scala
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.8")
|
|
|
|
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.14")
|
|
|
|
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0-M5")
|
|
|
|
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.2.7")
|
|
|
|
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")
|
|
|
|
addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.15")
|
|
|
|
// sbt plugin to unify scaladoc/javadoc across multiple projects
|
|
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.2")
|
|
|
|
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
|
|
|
|
// ensure proper linkage across libraries in Scaladoc
|
|
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "2.1.0")
|
|
|
|
// bloop is a build server, enabling faster builds and more rapid dev feedback
|
|
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.2.5")
|
|
|
|
//tool to publish snapshots to sonatype after CI builds finish
|
|
//https://github.com/olafurpg/sbt-ci-release
|
|
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.2.6")
|
|
|
|
// write markdown files with type-checked Scala
|
|
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "1.3.0")
|
|
|
|
addSbtPlugin("io.github.davidmweber" % "flyway-sbt" % "5.2.0")
|