PlotSquared/Core/build.gradle.kts

59 lines
1.5 KiB
Plaintext
Raw Normal View History

2020-10-08 13:27:23 +02:00
import java.time.format.DateTimeFormatter
dependencies {
// Expected everywhere.
compileOnlyApi(libs.checkerqual)
// Minecraft expectations
compileOnlyApi(libs.gson)
compileOnly(libs.guava)
// Platform expectations
compileOnlyApi(libs.snakeyaml)
// Adventure
api(libs.adventure)
api(libs.minimessage)
// Guice
api(libs.guice) {
2020-10-08 13:27:23 +02:00
exclude(group = "com.google.guava")
}
api(libs.guiceassistedinject) {
2020-10-08 13:27:23 +02:00
exclude("com.google.inject", "guice")
}
compileOnlyApi(libs.findbugs)
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")
}
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 }
// Logging
compileOnlyApi(libs.log4j)
// Other libraries
api(libs.prtree)
api(libs.aopalliance)
api(libs.rorledning) {
2020-10-08 13:27:23 +02:00
exclude(group = "com.google.guava")
}
api(libs.arkitektonika)
api(libs.paster)
2020-10-08 13:27:23 +02:00
}
tasks.processResources {
filesMatching("plugin.properties") {
expand(
"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
)
}
}