2021-12-11 17:59:45 +00:00
|
|
|
plugins {
|
|
|
|
|
`maven-publish`
|
2024-07-21 16:57:58 +00:00
|
|
|
id("io.github.goooler.shadow")
|
2021-12-11 17:59:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation(project(":api")) // API
|
2025-03-21 19:34:45 +00:00
|
|
|
// compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT") // Galaxy
|
|
|
|
|
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
|
2022-01-05 14:25:17 +00:00
|
|
|
compileOnly("com.gitlab.ruany:LiteBansAPI:0.3.5") // move to proxy
|
2022-09-03 08:41:50 +00:00
|
|
|
compileOnly("org.apache.commons:commons-lang3:3.12.0") // needs an alternative, already removed from upstream api and will be removed in server
|
2022-09-26 21:55:49 +00:00
|
|
|
compileOnly("net.luckperms:api:5.3") // Luckperms
|
2021-12-11 20:41:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks {
|
|
|
|
|
|
|
|
|
|
shadowJar {
|
2022-09-02 08:37:25 +00:00
|
|
|
archiveFileName.set("${rootProject.name}-${project.name}-${project.version}.jar")
|
2021-12-11 20:41:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
build {
|
|
|
|
|
dependsOn(shadowJar)
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-21 19:34:45 +00:00
|
|
|
}
|