2016-07-15 22:26:09 +02:00
|
|
|
dependencies {
|
2016-08-06 23:56:02 +02:00
|
|
|
compile project(':bukkit0')
|
2016-07-15 22:26:09 +02:00
|
|
|
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
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-07 09:16:34 +02:00
|
|
|
jar.destinationDir = file '../target'
|
|
|
|
jar.archiveName = "${parent.name}-${project.name}-${parent.version}.jar"
|