--- a/buildSrc/src/main/kotlin/Dokka.kt Mon May 05 17:09:13 2025 -0400
+++ b/buildSrc/src/main/kotlin/Dokka.kt Mon May 05 17:10:13 2025 -0400
@@ -39,6 +39,18 @@
localDirectory = rootDir
remoteUrl = uri("https://github.com/fbarthelery/AboutOss/tree/main/")
}
+
+ externalDocumentationLinks.register("okio") {
+ url = uri("https://square.github.io/okio/3.x/okio/okio/")
+ }
+ externalDocumentationLinks.register("kotlinx-coroutines") {
+ url = uri("https://kotlinlang.org/api/kotlinx.coroutines/")
+ }
+
+ perPackageOption {
+ matchingRegex = ".*\\.generated\\.resources"
+ suppress = true
+ }
}
}