Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apiMappings does not seem to work with unidoc task #7

Open
taylorleese opened this issue Jan 6, 2015 · 2 comments
Open

apiMappings does not seem to work with unidoc task #7

taylorleese opened this issue Jan 6, 2015 · 2 comments

Comments

@taylorleese
Copy link

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
))
@taylorleese
Copy link
Author

This may be similar to #5.

@taylorleese
Copy link
Author

Most of my attempts are based on what I found in the Akka project where I assume they are attempting to solve a similar problem, but I haven't been able to solve it yet. (see https://github.com/akka/akka/blob/master/project/Unidoc.scala#L19).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant