Reputation: 8821
It seems docDirectory in Compile <<= (baseDirectory / "api")
is deprecated and sbt won't start if build.sbt
contains the setting.
How should I set scaladoc's output directory in sbt 0.13?
Upvotes: 3
Views: 755
Reputation: 8821
Use the following setting instead:
target in Compile in doc := baseDirectory.value / "api"
Upvotes: 6