Skip to content

Commit 63ec27a

Browse files
authored
KTOR-2206 Fix dokkaWebsite build (#2369)
1 parent 04117e0 commit 63ec27a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,10 @@ if (build_snapshot_train) {
288288
}
289289

290290
afterEvaluate {
291+
def allCompileKotlinTasks = subprojects.collect {
292+
it.hasProperty("compileKotlinJvm") ? [it.compileKotlinJvm] : []
293+
}.flatten()
294+
291295
task dokkaWebsite(type: dokka.getClass()) {
292296
outputFormat = 'kotlin-website'
293297
outputDirectory = "${rootProject.projectDir}/apidoc"

0 commit comments

Comments
 (0)