2016-07-01 23:13:49 +02:00
|
|
|
repositories {
|
2018-12-17 20:57:21 +01:00
|
|
|
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }
|
2018-08-10 17:01:10 +02:00
|
|
|
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
maven { url "http://nexus.hc.to/content/repositories/pub_releases" }
|
2018-12-21 21:10:37 +01:00
|
|
|
maven { url = "https://repo.codemc.org/repository/maven-public" }
|
2016-11-21 04:24:27 +01:00
|
|
|
mavenLocal()
|
2016-07-01 23:13:49 +02:00
|
|
|
}
|
|
|
|
|
2016-02-23 05:11:28 +01:00
|
|
|
dependencies {
|
|
|
|
compile project(':Core')
|
2018-12-21 17:26:19 +01:00
|
|
|
testCompile project(':Core')
|
2018-12-20 02:05:10 +01:00
|
|
|
compile 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
|
2018-12-20 00:18:57 +01:00
|
|
|
compile(group: 'com.sk89q.worldedit', name: 'worldedit-bukkit', version: '7.0.0-SNAPSHOT')
|
2018-12-21 21:10:37 +01:00
|
|
|
compile(group: 'org.bstats', name: 'bstats-bukkit', version: '1.4')
|
2018-12-21 17:26:19 +01:00
|
|
|
compile("net.milkbowl.vault:VaultAPI:1.7") {
|
2016-11-21 04:24:27 +01:00
|
|
|
exclude module: 'bukkit'
|
|
|
|
}
|
2019-01-09 23:12:36 +01:00
|
|
|
compile 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
|
|
|
|
2018-11-15 00:06:20 +01:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2016-02-26 13:55:21 +01:00
|
|
|
|
|
|
|
processResources {
|
|
|
|
from('src/main/resources') {
|
|
|
|
include 'plugin.yml'
|
|
|
|
expand(
|
2018-08-10 17:01:10 +02:00
|
|
|
name: project.parent.name,
|
|
|
|
version: project.parent.version
|
2016-02-26 13:55:21 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
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'))
|
2018-12-21 21:10:37 +01:00
|
|
|
include(dependency('org.bstats:bstats-bukkit:1.4'))
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
2018-12-21 21:10:37 +01: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 ->
|
2018-08-10 17:01:10 +02:00
|
|
|
ant.checksum file: task.archivePath
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
|
|
|
|
2018-12-21 17:26:19 +01:00
|
|
|
build.dependsOn(shadowJar)
|