From 5f063e60e0dd26027ef1afd487fa007396699f86 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Mon, 17 Jun 2019 12:51:24 +0200 Subject: Readme update --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fa11fefe..57ee6cbd 100644 --- a/README.md +++ b/README.md @@ -72,11 +72,15 @@ dokka { outputFormat = 'html' outputDirectory = "$buildDir/javadoc" - // These tasks will be used to determine source directories and classpath + // [Deprecated] These tasks will be used to determine source directories and classpath kotlinTasks { defaultKotlinTasks() + [':some:otherCompileKotlin', project("another").compileKotlin] } + // In case of Gradle multiproject build, you can include subprojects here to get merged documentation + // Note however, that you have to have the Kotlin plugin available in the root project + subProjects = ["subproject1", "subproject2"] + // List of files with module and package documentation // https://kotlinlang.org/docs/reference/kotlin-doc.html#module-and-package-documentation includes = ['packages.md', 'extra.md'] -- cgit