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("${rootProject.name}-${project.name}-${project.version}.jar") // minimize() } build { setBuildDir("${rootProject.buildDir}") dependsOn(shadowJar) } }