aboutsummaryrefslogtreecommitdiff
path: root/unidoc.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'unidoc.sbt')
-rw-r--r--unidoc.sbt15
1 files changed, 0 insertions, 15 deletions
diff --git a/unidoc.sbt b/unidoc.sbt
deleted file mode 100644
index 9e471d0..0000000
--- a/unidoc.sbt
+++ /dev/null
@@ -1,15 +0,0 @@
-import sbtunidoc.Plugin.UnidocKeys._
-
-unidocSettings
-
-scalacOptions in (ScalaUnidoc, unidoc) ++= Seq(
- "-groups", // Group similar methods together based on the @group annotation.
- "-diagrams", // Show classs hierarchy diagrams (requires 'dot' to be available on path)
- "-implicits", // Add methods "inherited" through implicit conversions
- "-sourcepath", baseDirectory.value.getAbsolutePath
-) ++ {
- val latestTag: String = "git describe --abbrev=0".!!
- Opts.doc.sourceUrl(
- s"https://github.com/jodersky/flow/blob/$latestTag€{FILE_PATH}.scala"
- )
-}