You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I run sbt doc references are resolved correctly based on my apiMappings. If I run sbt unidoc then references are not resolved.
I have tried the following:
apiMappings in unidoc := apiMappings.value,
apiMappings in ScalaUnidoc:= apiMappings.value,
apiMappings in unidoc := (apiMappings in (Compile, doc)).value,
apiMappings in ScalaUnidoc:= (apiMappings in (Compile, doc)).value,
apiMappings in (ScalaUnidoc, unidoc) := (apiMappings in (Compile, doc)).value,
mySettings ++ inTask(unidoc)(Seq(
apiMappings in ScalaUnidoc:= (apiMappings in (Compile, doc)).value
))
The text was updated successfully, but these errors were encountered:
If I run
sbt doc
references are resolved correctly based on myapiMappings
. If I runsbt unidoc
then references are not resolved.I have tried the following:
The text was updated successfully, but these errors were encountered: