I'm using xsbt (0.6.12), with the Scala 2.8.0 Beta1 prerelease. My
project's "doc" action fails with a "-doctitle not recognised", so the
"doc" task is clearly using the pre-2.8 scaladoc options. I can get
around the problem with something like the following, in my project
definition:
private val projectTitle = projectName + " " + projectVersion + "
API"
override def documentOptions = List(CompoundDocOption("-doc-
title", projectTitle))
Is that the expected workaround, for now? Or is there some easier, or
more appropriate, solution?
Thanks.
Brian Clapper, b...@clapper.org
Yes, that is the expected workaround. I've made some changes to make
the defaults for Scala 2.8 better in sbt 0.7, but the scaladoc options
might still change before Scala 2.8 final.
-Mark
> --
> You received this message because you are subscribed to the Google Groups
> "simple-build-tool" group.
> To post to this group, send email to simple-b...@googlegroups.com.
> To unsubscribe from this group, send email to
> simple-build-t...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simple-build-tool?hl=en.
>
>