23 lines
450 B
Plaintext
23 lines
450 B
Plaintext
plugins {
|
|
`maven-publish`
|
|
id("com.github.johnrengelman.shadow")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":api")) // API
|
|
compileOnly("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT") // Galaxy
|
|
compileOnly("com.gitlab.ruany:LiteBansAPI:0.3.5") // move to proxy
|
|
}
|
|
|
|
tasks {
|
|
|
|
shadowJar {
|
|
archiveFileName.set("${project.name}-${project.version}.jar")
|
|
// minimize()
|
|
}
|
|
|
|
build {
|
|
dependsOn(shadowJar)
|
|
}
|
|
|
|
} |