From faecd773582d71aca570f199efa7058007146de2 Mon Sep 17 00:00:00 2001 From: Taichi Yamakawa Date: Thu, 25 Mar 2021 23:52:34 +0900 Subject: [PATCH] Include links to Scala standard library types in generated Scaladoc https://www.scala-sbt.org/1.x/docs/Howto-Scaladoc.html#Enable+automatic+linking+to+the+external+Scaladoc+of+managed+dependencies --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index ace60ee8..76b15255 100644 --- a/build.sbt +++ b/build.sbt @@ -19,6 +19,7 @@ lazy val core = project.in(file("core")) // don't run Dottydoc, it errors and isn't needed anyway. // but we leave `publishArtifact` set to true, otherwise Sonatype won't let us publish Compile / doc / sources := (if (isDotty.value) Seq() else (Compile / doc/ sources).value), + Compile / doc / autoAPIMappings := true, scalaModuleMimaPreviousVersion := Some("1.0.0").filterNot(_ => isDotty.value), )