From e9c62838d5bbf3e2ac62c2f3046b6147ce1c0743 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Mon, 5 Aug 2019 18:08:53 +0300 Subject: Move kotlinTasks, update README, minor refactoring --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index de00d555..8ef20f32 100644 --- a/README.md +++ b/README.md @@ -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 -- cgit