mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-22 15:05:18 +01:00
14 lines
282 B
Groovy
14 lines
282 B
Groovy
|
dependencies {
|
||
|
compileOnly 'org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT'
|
||
|
compileOnly project(':plugin')
|
||
|
}
|
||
|
|
||
|
jar{
|
||
|
archiveFileName = project.name + " Extension" + ".jar"
|
||
|
}
|
||
|
|
||
|
description = 'Summoning'
|
||
|
|
||
|
tasks.withType(Jar) {
|
||
|
destinationDirectory = file("$rootDir/bin/")
|
||
|
}
|