blob: 188917bc43a3d0575c9f4de9214a737cb3d2b457 (
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/first/")))
packageListUrl.set(new URL("file://" + rootProject.rootDir.toPath().toAbsolutePath().resolve("first/build/dokka/html/first/package-list")))
}
}
}
}
|