Is `sourceLink.packageListUrl` supported in the ne...
# dokka
c
Is
sourceLink.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?
o
Probably you are talking about
externalDocumentationLink
? And yes, it's supported, but the API has changed and looks like it's missing in the migration guide... here is an example:
Copy code
dokka {
  dokkaSourceSets.configureEach {
    externalDocumentationLinks.register("kotlinx-serialization") {
      url("...")
      packageListUrl("...")
    }
  }
}
c
That’s it! Thanks!
👍 2