Use gradle as a build tool

This commit is contained in:
destro174
2021-12-11 21:41:19 +01:00
parent 5b68a0cbb7
commit 2ce84244e8
4 changed files with 49 additions and 9 deletions
+14
View File
@@ -1,9 +1,23 @@
plugins {
`maven-publish`
id("com.github.johnrengelman.shadow")
}
dependencies {
implementation(project(":api")) // API
compileOnly("com.alttd:Galaxy-API:1.18.1-R0.1-SNAPSHOT") // Galaxy
compileOnly("com.gitlab.ruany:LiteBansAPI:0.3.5")
}
tasks {
shadowJar {
archiveFileName.set("${project.name}-${project.version}.jar")
// minimize()
}
build {
dependsOn(shadowJar)
}
}