2020-10-08 13:27:23 +02:00
|
|
|
import java.time.format.DateTimeFormatter
|
|
|
|
|
2020-09-20 22:42:13 +02:00
|
|
|
dependencies {
|
|
|
|
// Expected everywhere.
|
2021-04-30 09:50:22 +02:00
|
|
|
compileOnlyApi(libs.checkerqual)
|
2020-09-20 22:42:13 +02:00
|
|
|
|
|
|
|
// Minecraft expectations
|
2021-06-20 18:17:18 +02:00
|
|
|
compileOnlyApi(libs.gson)
|
2021-12-10 11:25:21 +01:00
|
|
|
compileOnly(libs.guava)
|
2020-09-20 22:42:13 +02:00
|
|
|
|
|
|
|
// Platform expectations
|
2021-06-20 18:17:18 +02:00
|
|
|
compileOnlyApi(libs.snakeyaml)
|
2020-09-20 22:42:13 +02:00
|
|
|
|
2021-04-30 09:50:22 +02:00
|
|
|
// Adventure
|
|
|
|
api(libs.adventure)
|
|
|
|
api(libs.minimessage)
|
2020-09-20 22:42:13 +02:00
|
|
|
|
|
|
|
// Guice
|
2021-04-30 09:50:22 +02:00
|
|
|
api(libs.guice) {
|
2020-10-08 13:27:23 +02:00
|
|
|
exclude(group = "com.google.guava")
|
|
|
|
}
|
2021-04-30 09:50:22 +02:00
|
|
|
api(libs.guiceassistedinject) {
|
2020-10-08 13:27:23 +02:00
|
|
|
exclude("com.google.inject", "guice")
|
|
|
|
}
|
2022-04-19 00:48:23 +02:00
|
|
|
api(libs.spotbugs)
|
2020-09-20 22:42:13 +02:00
|
|
|
|
2020-10-08 13:27:23 +02:00
|
|
|
// Plugins
|
2021-11-05 11:57:58 +01:00
|
|
|
compileOnly(libs.worldeditCore) {
|
2020-10-08 13:27:23 +02:00
|
|
|
exclude(group = "bukkit-classloader-check")
|
|
|
|
exclude(group = "mockito-core")
|
|
|
|
exclude(group = "dummypermscompat")
|
|
|
|
}
|
2021-04-30 09:50:22 +02:00
|
|
|
testImplementation(libs.worldeditCore)
|
2021-11-05 11:57:58 +01:00
|
|
|
compileOnly(libs.fastasyncworldeditCore) { isTransitive = false }
|
2021-09-20 16:21:18 +02:00
|
|
|
testImplementation(libs.fastasyncworldeditCore) { isTransitive = false }
|
2020-09-20 22:42:13 +02:00
|
|
|
|
2020-10-08 13:28:58 +02:00
|
|
|
// Logging
|
2021-06-20 18:17:18 +02:00
|
|
|
compileOnlyApi(libs.log4j)
|
2020-10-08 13:28:58 +02:00
|
|
|
|
|
|
|
// Other libraries
|
2021-04-30 09:50:22 +02:00
|
|
|
api(libs.prtree)
|
|
|
|
api(libs.aopalliance)
|
2021-12-31 15:49:11 +01:00
|
|
|
api(libs.cloudServices)
|
2021-04-30 09:50:22 +02:00
|
|
|
api(libs.arkitektonika)
|
|
|
|
api(libs.paster)
|
2020-10-08 13:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.processResources {
|
|
|
|
filesMatching("plugin.properties") {
|
|
|
|
expand(
|
2021-12-14 23:04:36 +01:00
|
|
|
"version" to project.version.toString(),
|
|
|
|
"commit" to rootProject.grgit.head().abbreviatedId,
|
|
|
|
"date" to rootProject.grgit.head().dateTime.format(DateTimeFormatter.ofPattern("yy.MM.dd"))
|
2020-10-08 13:27:23 +02:00
|
|
|
)
|
|
|
|
}
|
2020-09-20 22:42:13 +02:00
|
|
|
}
|
2022-01-27 13:26:27 +01:00
|
|
|
|
|
|
|
tasks {
|
|
|
|
withType<Javadoc> {
|
|
|
|
val opt = options as StandardJavadocDocletOptions
|
|
|
|
opt.links("https://docs.enginehub.org/javadoc/com.sk89q.worldedit/worldedit-core/" + libs.worldeditCore.get().versionConstraint.toString())
|
|
|
|
opt.links("https://jd.adventure.kyori.net/api/" + libs.adventure.get().versionConstraint.toString())
|
|
|
|
opt.links("https://google.github.io/guice/api-docs/" + libs.guice.get().versionConstraint.toString() + "/javadoc/")
|
|
|
|
opt.links("https://checkerframework.org/api/")
|
|
|
|
}
|
|
|
|
}
|