diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2019-06-17 12:51:24 +0200 |
---|---|---|
committer | Kamil Doległo <kamilok1965@interia.pl> | 2019-06-17 12:51:59 +0200 |
commit | 5f063e60e0dd26027ef1afd487fa007396699f86 (patch) | |
tree | fad9db044dfc85ad699b900430963109546780fe /README.md | |
parent | 06bf55243ec4248d8cc4a72be033edcfa51ccd41 (diff) | |
download | dokka-5f063e60e0dd26027ef1afd487fa007396699f86.tar.gz dokka-5f063e60e0dd26027ef1afd487fa007396699f86.tar.bz2 dokka-5f063e60e0dd26027ef1afd487fa007396699f86.zip |
Readme update
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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'] |