Colin White
10/04/2024, 7:13 AMsourceLink.packageListUrl
supported in the newest Dokka 2.0.0-Beta
? How do I set the package list for sites that use a non-standard package list location?Oleg Yukhnevich
10/04/2024, 10:30 AMexternalDocumentationLink
?
And yes, it's supported, but the API has changed and looks like it's missing in the migration guide...
here is an example:
dokka {
dokkaSourceSets.configureEach {
externalDocumentationLinks.register("kotlinx-serialization") {
url("...")
packageListUrl("...")
}
}
}
Colin White
10/04/2024, 5:00 PM