37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
@file:Suppress("GradlePackageVersionRange", "GradlePackageUpdate")
|
|
|
|
evaluationDependsOn(":core-common")
|
|
|
|
dependencies {
|
|
implementation(project(":core-common")) { isTransitive = false }
|
|
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
|
|
|
|
implementation("de.tr7zw:item-nbt-api:+")
|
|
compileOnly("net.milkbowl.vault:VaultAPI:+") { isTransitive = false }
|
|
compileOnly("org.black_ixx:playerpoints:+") { isTransitive = false }
|
|
|
|
implementation("net.kyori:adventure-platform-bukkit:4+") {
|
|
exclude(group = "org.jetbrains")
|
|
exclude(group = "com.google.code.gson")
|
|
}
|
|
implementation("net.kyori:adventure-text-minimessage:4+") {
|
|
exclude(module = "adventure-api")
|
|
exclude(group = "org.jetbrains")
|
|
}
|
|
implementation("com.zaxxer:HikariCP:4.0.3") {
|
|
exclude(group = "org.slf4j")
|
|
}
|
|
implementation("org.quartz-scheduler:quartz:2.3.2") { isTransitive = false }
|
|
}
|
|
|
|
tasks {
|
|
processResources {
|
|
filesMatching("plugin.yml") {
|
|
expand(project.properties)
|
|
}
|
|
}
|
|
withType<Jar> {
|
|
archiveBaseName = "HamsterCore-Bukkit"
|
|
}
|
|
}
|