2016-07-01 23:13:49 +02:00
|
|
|
repositories {
|
|
|
|
maven {url "https://hub.spigotmc.org/nexus/content/groups/public/"}
|
|
|
|
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/"}
|
2016-08-08 20:02:25 +02:00
|
|
|
maven {url "http://nexus.hc.to/content/repositories/pub_releases"}
|
2016-07-01 23:13:49 +02:00
|
|
|
}
|
|
|
|
|
2016-02-23 05:11:28 +01:00
|
|
|
dependencies {
|
|
|
|
compile project(':Core')
|
2016-07-01 23:13:49 +02:00
|
|
|
compile 'org.spigotmc:spigot-api:1.10.2-R0.1-SNAPSHOT'
|
2016-04-26 16:14:22 +02:00
|
|
|
compile 'net.milkbowl.vault:VaultAPI:1.6'
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2016-02-27 06:05:21 +01:00
|
|
|
// We only want the shadow jar produced
|
|
|
|
jar.enabled = false
|
2016-07-01 23:13:49 +02:00
|
|
|
|
2016-02-23 05:11:28 +01:00
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
|
|
|
include(dependency(':Core'))
|
|
|
|
}
|
2016-07-01 23:13:49 +02:00
|
|
|
relocate('org.mcstats', 'com.plotsquared.stats')
|
2016-02-26 13:55:21 +01:00
|
|
|
archiveName = "${parent.name}-${project.name}-${parent.version}.jar"
|
2016-02-27 11:07:42 +01:00
|
|
|
destinationDir = file '../target'
|
2016-02-26 13:55:21 +01:00
|
|
|
}
|
2016-07-01 23:13:49 +02:00
|
|
|
|
2016-02-26 13:55:21 +01:00
|
|
|
shadowJar.doLast {
|
|
|
|
task ->
|
|
|
|
ant.checksum file: task.archivePath
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
|
|
|
|
2016-08-08 20:02:25 +02:00
|
|
|
build.dependsOn(shadowJar);
|