Chat/galaxy/build.gradle.kts

24 lines
517 B
Plaintext
Raw Normal View History

2021-12-11 17:59:45 +00:00
plugins {
`maven-publish`
2021-12-11 20:41:19 +00:00
id("com.github.johnrengelman.shadow")
2021-12-11 17:59:45 +00:00
}
dependencies {
implementation(project(":api")) // API
2022-09-02 08:22:34 +00:00
compileOnly("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT") // Galaxy
2022-01-05 14:25:17 +00:00
compileOnly("com.gitlab.ruany:LiteBansAPI:0.3.5") // move to proxy
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
// minimize()
}
build {
2022-09-02 08:37:25 +00:00
setBuildDir("${rootProject.buildDir}")
2021-12-11 20:41:19 +00:00
dependsOn(shadowJar)
}
2021-12-11 17:59:45 +00:00
}