mirror of
https://github.com/Auxilor/EcoSkills.git
synced 2026-01-04 15:41:36 +00:00
15 lines
330 B
Groovy
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.5-R0.1-SNAPSHOT'
|
|
}
|
|
|
|
tasks.withType(Jar) {
|
|
destinationDirectory = file("$rootDir/bin/")
|
|
}
|
|
|
|
tasks.jar.enabled = false
|
|
} |