33 lines
852 B
Plaintext
33 lines
852 B
Plaintext
evaluationDependsOn(":core-common")
|
|
|
|
dependencies {
|
|
implementation(project(":core-common")) { isTransitive = false }
|
|
compileOnly("net.md-5:bungeecord-api:+")
|
|
|
|
implementation("net.kyori:adventure-platform-bungeecord: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+") {
|
|
exclude(group = "org.slf4j")
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
processResources {
|
|
filesMatching("bungee.yml") {
|
|
expand(project.properties)
|
|
}
|
|
}
|
|
withType<Jar> {
|
|
archiveBaseName = "HamsterCore-BungeeCord"
|
|
}
|
|
shadowJar {
|
|
destinationDirectory = rootProject.buildDir
|
|
}
|
|
}
|