Skip to content

Commit

Permalink
KTOR-2206 Fix dokkaWebsite build (#2369)
Browse files Browse the repository at this point in the history
  • Loading branch information
e5l authored Feb 25, 2021
1 parent 04117e0 commit 63ec27a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,10 @@ if (build_snapshot_train) {
}

afterEvaluate {
def allCompileKotlinTasks = subprojects.collect {
it.hasProperty("compileKotlinJvm") ? [it.compileKotlinJvm] : []
}.flatten()

task dokkaWebsite(type: dokka.getClass()) {
outputFormat = 'kotlin-website'
outputDirectory = "${rootProject.projectDir}/apidoc"
Expand Down

0 comments on commit 63ec27a

Please sign in to comment.