diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2019-08-05 18:08:53 +0300 |
---|---|---|
committer | Kamil Doległo <kamilok1965@interia.pl> | 2019-08-05 18:08:53 +0300 |
commit | e9c62838d5bbf3e2ac62c2f3046b6147ce1c0743 (patch) | |
tree | 32331850046f0a533b15ada6772114d930566e55 /README.md | |
parent | b02a6c8cfbc3b425c3a75b3cffaa073e6527c8cc (diff) | |
download | dokka-e9c62838d5bbf3e2ac62c2f3046b6147ce1c0743.tar.gz dokka-e9c62838d5bbf3e2ac62c2f3046b6147ce1c0743.tar.bz2 dokka-e9c62838d5bbf3e2ac62c2f3046b6147ce1c0743.zip |
Move kotlinTasks, update README, minor refactoring
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -71,11 +71,6 @@ dokka { outputFormat = 'html' outputDirectory = "$buildDir/javadoc" - // [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"] @@ -130,6 +125,11 @@ dokka { path = "src" } + // These tasks will be used to determine source directories and classpath + kotlinTasks { + defaultKotlinTasks() + [':some:otherCompileKotlin', project("another").compileKotlin] + } + // Specifies the location of the project source code on the Web. // If provided, Dokka generates "source" links for each declaration. // Repeat for multiple mappings |