2016-07-15 22:26:09 +02:00
|
|
|
dependencies {
|
2016-11-24 07:36:44 +01:00
|
|
|
compile project(':bukkit')
|
2016-07-15 22:26:09 +02:00
|
|
|
}
|
|
|
|
|
2018-03-14 11:49:07 +01:00
|
|
|
clean { delete "../target" }
|
2018-03-09 15:59:19 +01:00
|
|
|
|
2016-07-15 22:26:09 +02: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
|
|
|
|
}
|