22 lines
476 B
Plaintext
22 lines
476 B
Plaintext
plugins {
|
|
id("authmevelocity.publishing")
|
|
id("authmevelocity.spotless")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.paper)
|
|
}
|
|
|
|
tasks {
|
|
javadoc {
|
|
(options as StandardJavadocDocletOptions).run {
|
|
encoding = Charsets.UTF_8.name()
|
|
links(
|
|
"https://jd.advntr.dev/api/4.12.0/",
|
|
"https://jd.advntr.dev/text-minimessage/4.12.0/",
|
|
"https://jd.papermc.io/paper/1.19/"
|
|
)
|
|
}
|
|
}
|
|
}
|