Init modules

This commit is contained in:
Len
2022-10-19 17:31:09 +02:00
parent 066bdb8127
commit dcdba51f14
4 changed files with 69 additions and 32 deletions
+22
View File
@@ -0,0 +1,22 @@
plugins {
`maven-publish`
id("com.github.johnrengelman.shadow")
id("xyz.jpenilla.run-paper") version "1.0.6"
}
dependencies {
implementation(project(":api")) // API
compileOnly("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT") // Galaxy
}
tasks {
shadowJar {
archiveFileName.set("${rootProject.name}-${project.version}.jar")
}
build {
dependsOn(shadowJar)
}
}