Chat/galaxy/build.gradle.kts

24 lines
642 B
Plaintext
Raw Normal View History

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
2024-07-27 20:33:39 +00:00
compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT") // Galaxy
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)
}
2021-12-11 17:59:45 +00:00
}