mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-09 04:11:17 +01:00
16 lines
372 B
Groovy
16 lines
372 B
Groovy
dependencies {
|
|
compile project(':bukkit')
|
|
}
|
|
|
|
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" |