Skip to content

Commit

Permalink
Update external link URL to stdlib (#3938)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev authored Nov 26, 2024
1 parent b7102d4 commit d11819c
Show file tree
Hide file tree
Showing 65 changed files with 306 additions and 306 deletions.
8 changes: 4 additions & 4 deletions docs/topics/runners/dokka-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -737,8 +737,8 @@ Below you can see all possible configuration options applied at the same time.
"packageListUrl": "https://docs.oracle.com/javase/8/docs/api/package-list"
},
{
"url": "https://kotlinlang.org/api/latest/jvm/stdlib/",
"packageListUrl": "https://kotlinlang.org/api/latest/jvm/stdlib/package-list"
"url": "https://kotlinlang.org/api/core/kotlin-stdlib/",
"packageListUrl": "https://kotlinlang.org/api/core/kotlin-stdlib/package-list"
}
],
"perPackageOptions": [
Expand Down Expand Up @@ -802,8 +802,8 @@ Below you can see all possible configuration options applied at the same time.
"packageListUrl": "https://docs.oracle.com/javase/8/docs/api/package-list"
},
{
"url": "https://kotlinlang.org/api/latest/jvm/stdlib/",
"packageListUrl": "https://kotlinlang.org/api/latest/jvm/stdlib/package-list"
"url": "https://kotlinlang.org/api/core/kotlin-stdlib/",
"packageListUrl": "https://kotlinlang.org/api/core/kotlin-stdlib/package-list"
}
],
"perPackageOptions": [
Expand Down
4 changes: 2 additions & 2 deletions docs/topics/runners/dokka-gradle.md
Original file line number Diff line number Diff line change
Expand Up @@ -1438,7 +1438,7 @@ tasks.withType<DokkaTask>().configureEach {
}

externalDocumentationLink {
url.set(URL("https://kotlinlang.org/api/latest/jvm/stdlib/"))
url.set(URL("https://kotlinlang.org/api/core/kotlin-stdlib/"))
packageListUrl.set(
rootProject.projectDir.resolve("stdlib.package.list").toURL()
)
Expand Down Expand Up @@ -1517,7 +1517,7 @@ tasks.withType(DokkaTask.class) {
}
externalDocumentationLink {
url.set(new URL("https://kotlinlang.org/api/latest/jvm/stdlib/"))
url.set(new URL("https://kotlinlang.org/api/core/kotlin-stdlib/"))
packageListUrl.set(
file("stdlib.package.list").toURL()
)
Expand Down
2 changes: 1 addition & 1 deletion docs/topics/runners/dokka-maven.md
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ Below you can see all the possible configuration options applied at the same tim
</sourceLinks>
<externalDocumentationLinks>
<link>
<url>https://kotlinlang.org/api/latest/jvm/stdlib/</url>
<url>https://kotlinlang.org/api/core/kotlin-stdlib/</url>
<packageListUrl>file:/${project.basedir}/stdlib.package.list</packageListUrl>
</link>
</externalDocumentationLinks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ class CliIntegrationTest : AbstractCliIntegrationTest() {
"packageListUrl": "https://docs.oracle.com/javase/8/docs/api/package-list"
},
{
"url": "https://kotlinlang.org/api/latest/jvm/stdlib/",
"packageListUrl": "https://kotlinlang.org/api/latest/jvm/stdlib/package-list"
"url": "https://kotlinlang.org/api/core/",
"packageListUrl": "https://kotlinlang.org/api/core/package-list"
}
""".trimIndent(),
globalPerPackageOptions = """
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d11819c

Please sign in to comment.