Adding the following settings to the build.sbt
file of a Play 2.2.x app
does not disable Scaladoc generation. How can it be disabled?
play.Project(appName, appVersion, appDependencies)
.settings(scalaVersion := "2.10.3")
.settings(jsSettings : _*)
.settings(
publishArtifact in (Compile, packageDoc) := false,
publishArtifact in packageDoc := false
)
settings(publishArtifact in (Compile, packageDoc) := false)
, and the same withpackageSrc
for the sources. – Kelcey