mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-18 08:35:43 +01:00
17 lines
422 B
Groovy
17 lines
422 B
Groovy
dependencies {
|
|
compile project(':bukkit0')
|
|
compile 'org.bukkit.craftbukkit:CraftBukkit:1.8.8'
|
|
}
|
|
|
|
processResources {
|
|
from('src/main/resources') {
|
|
include 'plugin.yml'
|
|
expand(
|
|
name: project.parent.name,
|
|
version: project.parent.version
|
|
)
|
|
}
|
|
}
|
|
|
|
jar.destinationDir = file '../target'
|
|
jar.archiveName = "${parent.name}-${project.name}-${parent.version}.jar" |