mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-25 03:55:35 +01:00
9c1bb58a09
Now uses a single jar for bukkit I'm going to seperate the injector so FAWE can be used (API wise) without WorldEdit.
17 lines
423 B
Groovy
17 lines
423 B
Groovy
dependencies {
|
|
compile project(':bukkit')
|
|
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 = "FastAsyncVoxelSniper-${project.name}-${parent.version}.jar" |