blob: 2b62f96353011903a787adfab898c92fb57840c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
dependencies {
implementation project(":first")
}
dokkaHtml {
dependsOn(":first:dokkaHtml")
dokkaSourceSets {
"main" {
externalDocumentationLink {
url.set(new URL("file://" + rootProject.rootDir.toPath().toAbsolutePath().resolve("first/build/dokka/html/")))
packageListUrl.set(new URL("file://" + rootProject.rootDir.toPath().toAbsolutePath().resolve("first/build/dokka/html/first/package-list")))
}
}
}
}
|