b5a8eb2176
update to 1.9.4 progress notifications lighting fixes optimizations Only stable for bukkit 1.8/1.9
22 lines
540 B
Groovy
22 lines
540 B
Groovy
dependencies {
|
|
compile project(':bukkit0')
|
|
compile 'org.bukkit.craftbukkit.v1_9R2:craftbukkitv1_9R2:1.9.4'
|
|
}
|
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
// We only want the shadow jar produced
|
|
jar.enabled = false
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency(':bukkit0'))
|
|
include(dependency(':core'))
|
|
}
|
|
archiveName = "${parent.name}-${project.name}.jar"
|
|
destinationDir = file '../target'
|
|
}
|
|
shadowJar.doLast {
|
|
task ->
|
|
ant.checksum file: task.archivePath
|
|
}
|
|
|
|
build.dependsOn(shadowJar); |