FastAsyncWorldedit/favs/build.gradle

21 lines
465 B
Groovy
Raw Normal View History

dependencies {
compile project(':bukkit')
}
2018-03-14 11:49:07 +01:00
clean { delete "../target" }
2018-03-09 15:59:19 +01:00
processResources {
from('src/main/resources') {
include 'plugin.yml'
expand(
name: project.parent.name,
version: project.parent.version
)
}
}
2016-08-07 09:16:34 +02:00
jar.destinationDir = file '../target'
2017-08-17 17:00:48 +02:00
jar.archiveName = "FastAsyncVoxelSniper-${project.name}-${parent.version}.jar"
jar.doLast { task ->
ant.checksum file: task.archivePath
}