46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
@file:Suppress("VulnerableLibrariesLocal")
|
|
|
|
evaluationDependsOn(":core-common")
|
|
|
|
dependencies {
|
|
implementation(project(":core-common")) { isTransitive = false }
|
|
compileOnly("org.spigotmc:spigot-api:1.18.2-R0.1-SNAPSHOT")
|
|
|
|
implementation("de.tr7zw:item-nbt-api:2.12.3-SNAPSHOT")
|
|
compileOnly("net.milkbowl.vault:VaultAPI:1.7") { isTransitive = false }
|
|
compileOnly("org.black_ixx:playerpoints:3.2.6") { isTransitive = false }
|
|
compileOnly("me.clip:placeholderapi:2.11.5") { isTransitive = false }
|
|
|
|
implementation("net.kyori:adventure-platform-bukkit:4.3.2") {
|
|
exclude(group = "org.jetbrains")
|
|
exclude(group = "com.google.code.gson")
|
|
}
|
|
implementation("net.kyori:adventure-text-minimessage:4.15.0") {
|
|
exclude(module = "adventure-api")
|
|
exclude(group = "org.jetbrains")
|
|
}
|
|
implementation("com.zaxxer:HikariCP:4.0.3") { exclude(group = "org.slf4j") }
|
|
// https://mvnrepository.com/artifact/redis.clients/jedis
|
|
implementation("redis.clients:jedis:5.1.2") {
|
|
exclude(group = "com.google.code.gson")
|
|
exclude(group = "org.slf4j")
|
|
}
|
|
// https://mvnrepository.com/artifact/org.quartz-scheduler/quartz
|
|
implementation("org.quartz-scheduler:quartz:2.3.2") { isTransitive = false }
|
|
}
|
|
|
|
tasks {
|
|
processResources {
|
|
filesMatching("plugin.yml") {
|
|
expand(rootProject.properties)
|
|
expand(System.getenv())
|
|
}
|
|
}
|
|
withType<Jar> {
|
|
archiveBaseName = "HamsterCore-Bukkit"
|
|
}
|
|
shadowJar {
|
|
destinationDirectory = rootProject.layout.buildDirectory
|
|
}
|
|
}
|