We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7de5f5 commit 3592a8cCopy full SHA for 3592a8c
gradle/dokka.gradle
@@ -35,6 +35,13 @@ dokka {
35
outputFormat = 'kotlin-website'
36
dependsOn(project.configurations.dokkaStubs)
37
38
+ noStdlibLink = true
39
+
40
+ externalDocumentationLink {
41
+ packageListUrl = rootProject.projectDir.toPath().resolve("site/stdlib.package.list").toUri().toURL()
42
+ url = new URL("https://kotlinlang.org/api/latest/jvm/stdlib/")
43
+ }
44
45
if (project.name != "kotlinx-coroutines-core") {
46
dependsOn(project.configurations.compileClasspath)
47
dependsOn(project.sourceSets.main.output)
0 commit comments