mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-15 15:16:55 +01:00
19 lines
435 B
Groovy
19 lines
435 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"
|
|
jar.doLast { task ->
|
|
ant.checksum file: task.archivePath
|
|
} |