2016-07-15 01:53:30 +02:00
|
|
|
dependencies {
|
|
|
|
compile project(':bukkit0')
|
|
|
|
compile 'org.bukkit.craftbukkit:Craftbukkit:1.7.10'
|
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
from('src/main/resources') {
|
|
|
|
include 'plugin.yml'
|
|
|
|
expand(
|
|
|
|
name: project.parent.name,
|
|
|
|
version: project.parent.version
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
// We only want the shadow jar produced
|
|
|
|
jar.enabled = false
|
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
|
|
|
include(dependency(':bukkit0'))
|
|
|
|
include(dependency(':core'))
|
2016-08-17 04:10:03 +02:00
|
|
|
include(dependency('com.google.code.gson:gson:2.2.4'))
|
2016-07-15 01:53:30 +02:00
|
|
|
}
|
|
|
|
archiveName = "${parent.name}-${project.name}-${parent.version}.jar"
|
|
|
|
destinationDir = file '../target'
|
2016-08-17 04:10:03 +02:00
|
|
|
|
|
|
|
relocate('com.google.gson', 'com.sk89q.worldedit.internal.gson')
|
2016-07-15 01:53:30 +02:00
|
|
|
}
|
|
|
|
shadowJar.doLast {
|
|
|
|
task ->
|
|
|
|
ant.checksum file: task.archivePath
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(shadowJar);
|