File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
build-logic/src/main/kotlin Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 1616import org.jetbrains.dokka.gradle.DokkaExtension
1717import org.jetbrains.dokka.gradle.engine.parameters.VisibilityModifier
1818import java.net.URI
19+ import java.time.LocalDate
1920
2021plugins {
2122 id(" org.jetbrains.dokka" )
@@ -32,8 +33,10 @@ extensions.configure<DokkaExtension> {
3233 includes.from(" README.md" )
3334 enableKotlinStdLibDocumentationLink.set(false )
3435
35- externalDocumentationLinks.create(" error" ) {
36- url.set(URI (" https://error.kotlincrypto.org/" ))
36+ externalDocumentationLinks {
37+ register(project.path + " :error" ) {
38+ url.set(URI (" https://error.kotlincrypto.org/" ))
39+ }
3740 }
3841
3942 sourceLink {
@@ -46,4 +49,8 @@ extensions.configure<DokkaExtension> {
4649 VisibilityModifier .Public ,
4750 )
4851 }
52+
53+ pluginsConfiguration.html {
54+ footerMessage.set(" © 2025-${LocalDate .now().year} Copyright KotlinCrypto" )
55+ }
4956}
You can’t perform that action at this time.
0 commit comments