mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-22 15:05:18 +01:00
17 lines
432 B
Groovy
17 lines
432 B
Groovy
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.17.1-R0.1-SNAPSHOT'
|
|
compileOnly 'com.willfp:libreforge:3.3.0'
|
|
}
|
|
|
|
tasks.withType(Jar) {
|
|
destinationDirectory = file("$rootDir/bin/")
|
|
}
|
|
|
|
tasks.jar.enabled = false
|
|
} |