[PIO-147] Fix broken Scala API documentation
Project: http://git-wip-us.apache.org/repos/asf/predictionio/repo Commit: http://git-wip-us.apache.org/repos/asf/predictionio/commit/f1f8723f Tree: http://git-wip-us.apache.org/repos/asf/predictionio/tree/f1f8723f Diff: http://git-wip-us.apache.org/repos/asf/predictionio/diff/f1f8723f Branch: refs/heads/livedoc Commit: f1f8723f0389391ad9dc06bab21bc38b9705c137 Parents: c1270e2 Author: Donald Szeto <[email protected]> Authored: Mon Feb 12 15:56:53 2018 -0800 Committer: Chan Lee <[email protected]> Committed: Thu Mar 1 13:49:09 2018 -0800 ---------------------------------------------------------------------- build.sbt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/predictionio/blob/f1f8723f/build.sbt ---------------------------------------------------------------------- diff --git a/build.sbt b/build.sbt index 6eee3f8..7a81249 100644 --- a/build.sbt +++ b/build.sbt @@ -199,8 +199,8 @@ val root = (project in file(".")). settings(commonSettings: _*). enablePlugins(ScalaUnidocPlugin). settings( - unidocProjectFilter in (ScalaUnidoc, unidoc) := inAnyProject -- inProjects(dataElasticsearch), - unidocProjectFilter in (JavaUnidoc, unidoc) := inAnyProject -- inProjects(dataElasticsearch), + unidocProjectFilter in (ScalaUnidoc, unidoc) := inAnyProject -- inProjects(dataElasticsearch, dataElasticsearch1), + unidocProjectFilter in (JavaUnidoc, unidoc) := inAnyProject -- inProjects(dataElasticsearch, dataElasticsearch1), scalacOptions in (ScalaUnidoc, unidoc) ++= Seq( "-groups", "-skip-packages", @@ -212,8 +212,16 @@ val root = (project in file(".")). "org.apache.predictionio.controller.html", "org.apache.predictionio.controller.java", "org.apache.predictionio.data.api", + "org.apache.predictionio.data.storage.*", + "org.apache.predictionio.data.storage.hdfs", + "org.apache.predictionio.data.storage.jdbc", + "org.apache.predictionio.data.storage.localfs", + "org.apache.predictionio.data.storage.s3", + "org.apache.predictionio.data.storage.hbase", "org.apache.predictionio.data.view", + "org.apache.predictionio.data.webhooks", "org.apache.predictionio.tools", + "org.apache.predictionio.workflow.html", "scalikejdbc").mkString(":"), "-doc-title", "PredictionIO Scala API",
