mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-12-01 16:33:24 +01:00
14 lines
307 B
Groovy
14 lines
307 B
Groovy
|
dependencies {
|
||
|
compileOnly 'org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT'
|
||
|
compileOnly project(':plugin')
|
||
|
}
|
||
|
|
||
|
jar{
|
||
|
archiveFileName = findProperty("Name") + " v" + findProperty("version") + ".jar"
|
||
|
}
|
||
|
|
||
|
description = 'FireWand'
|
||
|
|
||
|
tasks.withType(Jar) {
|
||
|
destinationDirectory = file("$rootDir/bin/")
|
||
|
}
|