File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,10 @@ libraryDependencies <+= scalaVersion { sv => "org.scala-lang" % "scalap" % sv }
8181
8282// ------------------------------------------------------------------------------
8383
84+ // Avoid messy Scaladoc by excluding things that are not intended to be used
85+ // directly by normal Xitrum users.
86+ scalacOptions in (Compile , doc) ++= Seq (" -skip-packages" , " xitrum.sockjs" )
87+
8488// Skip API doc generation to speedup "publish-local" while developing.
8589// Comment out this line when publishing to Sonatype.
8690publishArtifact in (Compile , packageDoc) := false
Original file line number Diff line number Diff line change 11
2- // Ignore Java annotations to avoid Scaladoc crash
3- // (Commented out because Java annotations have been replaced with Scala ones)
4- //scalacOptions in (Compile, doc) ++= Seq("-skip-packages", "xitrum.annotation")
5-
62// Add diagrams to Scaladoc, graphviz is required
73scalacOptions in (Compile, doc) += "-diagrams"
84
You can’t perform that action at this time.
0 commit comments