DataLockLib/plugin/build.gradle.kts

23 lines
412 B
Plaintext
Raw Normal View History

2022-10-19 15:30:58 +00:00
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)
}
}