Skip to content

Commit dd3193a

Browse files
committed
fixed dokka
1 parent ddb0954 commit dd3193a

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
@file:Suppress("UnstableApiUsage")
22

3+
import org.jetbrains.dokka.gradle.DokkaTask
4+
35
buildscript {
46
repositories {
57
mavenCentral()

jupyter/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ tasks.withType<KotlinCompile> {
144144

145145
tasks.withType<AbstractDokkaLeafTask> {
146146
dokkaSourceSets {
147-
create("jupyter") {
147+
all {
148148
sourceRoot(preprocessMain.target.get())
149149
}
150150
}

kotlin-spark-api/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ tasks.withType<KotlinCompile> {
143143

144144
tasks.withType<AbstractDokkaLeafTask> {
145145
dokkaSourceSets {
146-
create("kotlin-spark-api") {
146+
all {
147147
sourceRoot(preprocessMain.target.get())
148148
}
149149
}

scala-tuples-in-kotlin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ tasks.withType<KotlinCompile> {
4848

4949
tasks.withType<AbstractDokkaLeafTask> {
5050
dokkaSourceSets {
51-
create("scala-tuples-in-kotlin") {
51+
all {
5252
sourceRoot(
5353
kotlin.sourceSets
5454
.main.get()

0 commit comments

Comments
 (0)