scala - Configuring ScalaDoc task in Gradle to generate aggregated documentation -
i have multi module scala project in gradle. works great it, except scaladoc. generate single 'uber-scaladoc' of libraries cross-linked. i'm still new groovy/gradle, 'me' problem. assistance getting setup appreciated.
build.gradle (in root directory) // ... task doscaladoc(type: scaladoc) { subprojects.each { p -> // here? include project's src/main/scala/*? // looks want phone call 'include' in here include each project's // source directory, i'm not familiar plenty project type @ // info. // // http://www.gradle.org/docs/current/dsl/org.gradle.api.tasks.scala.scaladoc.html } }
the goal here able run 'gradle doscaladoc' @ command line , have aggregate documentation show up.
thanks in advance.
scala groovy gradle documentation-generation scaladoc
No comments:
Post a Comment