EcoEnchants/eco-extensions/build.gradle
2021-01-04 11:24:04 +00:00

15 lines
394 B
Groovy

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