mirror of
https://github.com/Auxilor/EcoMobs.git
synced 2025-12-22 16:39:25 +00:00
24 lines
496 B
Plaintext
24 lines
496 B
Plaintext
group = "com.willfp"
|
|
version = rootProject.version
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:1.19.3-R0.1-SNAPSHOT")
|
|
compileOnly("com.github.lokka30:LevelledMobs:3.1.4")
|
|
compileOnly("com.ticxo.modelengine:api:R3.1.5")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
register("maven", MavenPublication::class) {
|
|
from(components["java"])
|
|
artifactId = rootProject.name
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
build {
|
|
dependsOn(publishToMavenLocal)
|
|
}
|
|
}
|