9
0
mirror of https://github.com/Auxilor/EcoArmor.git synced 2025-12-29 11:59:13 +00:00
Files
EcoArmor/eco-extensions/build.gradle
2021-03-22 13:40:25 +00:00

15 lines
330 B
Groovy

group 'com.willfp'
description = 'Extension Parent'
subprojects {
dependencies {
compileOnly project(":eco-core:core-plugin")
compileOnly 'org.spigotmc:spigot-api:1.16.4-R0.1-SNAPSHOT'
}
tasks.withType(Jar) {
destinationDirectory = file("$rootDir/bin/")
}
tasks.jar.enabled = false
}