EcoEnchants/eco-extensions/build.gradle

17 lines
432 B
Groovy
Raw Normal View History

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