mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-05 02:11:11 +01:00
32 lines
765 B
Groovy
32 lines
765 B
Groovy
dependencies {
|
|
compile project(':bukkit0')
|
|
compile 'org.bukkit.craftbukkit.v1_9R2:craftbukkitv1_9R2:1.9.4'
|
|
}
|
|
|
|
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'))
|
|
}
|
|
archiveName = "${parent.name}-${project.name}-${parent.version}.jar"
|
|
destinationDir = file '../target'
|
|
}
|
|
shadowJar.doLast {
|
|
task ->
|
|
ant.checksum file: task.archivePath
|
|
}
|
|
|
|
build.dependsOn(shadowJar); |