2016-02-23 05:11:28 +01:00
|
|
|
dependencies {
|
|
|
|
compile project(':Core')
|
|
|
|
compile 'org.bukkit:bukkit:1.8.8-R0.1-SNAPSHOT'
|
|
|
|
compile 'net.milkbowl.vault:VaultAPI:1.5'
|
|
|
|
}
|
|
|
|
|
2016-02-26 13:55:21 +01:00
|
|
|
sourceCompatibility = 1.7
|
|
|
|
targetCompatibility = 1.7
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
from('src/main/resources') {
|
|
|
|
include 'plugin.yml'
|
|
|
|
expand(
|
|
|
|
name: project.parent.name,
|
|
|
|
version: project.parent.version
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
2016-02-27 06:05:21 +01:00
|
|
|
// We only want the shadow jar produced
|
|
|
|
jar.enabled = false
|
2016-02-23 05:11:28 +01:00
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
|
|
|
include(dependency(':Core'))
|
|
|
|
}
|
2016-02-26 13:55:21 +01:00
|
|
|
archiveName = "${parent.name}-${project.name}-${parent.version}.jar"
|
|
|
|
}
|
|
|
|
shadowJar.doLast {
|
|
|
|
task ->
|
|
|
|
ant.checksum file: task.archivePath
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
|
|
|
|
2016-02-26 13:55:21 +01:00
|
|
|
build.dependsOn(shadowJar);
|