summaryrefslogtreecommitdiff
path: root/dokka/build.gradle.kts
blob: 7a84aac9c722c90aec7e42dda2c586c689cf831c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
plugins {
    id("org.jetbrains.dokka")
}

dependencies {
    dokka(project(":engine"))
    dokka(project(":platform-paper"))
    dokka(project(":platform-velocity"))
}

dokka {
    moduleName.set("LunaticChat")

    dokkaPublications.html {
        includes.from("README.md")
    }

    pluginsConfiguration {
        html {
            footerMessage.set("® 2026 m1sk9 - LunaticChat is not affiliated with Mojang Studios or Microsoft.")
        }
    }
}