EcoEnchants/eco-extensions/build.gradle

17 lines
425 B
Groovy
Raw Normal View History

group 'com.willfp'
2020-12-22 15:15:51 +01:00
description = 'Extension Parent'
subprojects {
dependencies {
compileOnly project(":eco-core:core-plugin")
compileOnly project(":eco-core:core-proxy")
2021-01-08 23:19:02 +01:00
compileOnly 'com.willfp:eco:1.1.1'
compileOnly 'org.spigotmc:spigot-api:1.16.4-R0.1-SNAPSHOT'
}
tasks.withType(Jar) {
destinationDirectory = file("$rootDir/bin/")
}
2021-01-04 15:12:47 +01:00
tasks.jar.enabled = false
}