FastAsyncWorldedit/bukkit/build.gradle

50 lines
1.4 KiB
Groovy
Raw Normal View History

2016-04-02 06:06:24 +02:00
dependencies {
compile project(':core')
2016-04-19 17:22:36 +02:00
compile 'org.bukkit.craftbukkit:CraftBukkit:1.8.8'
compile 'org.bukkit.craftbukkit:CraftBukkit:1.9.2'
2016-04-02 06:06:24 +02:00
compile 'net.milkbowl.vault:VaultAPI:1.5'
compile 'com.massivecraft:factions:2.8.0'
compile 'com.drtshock:factions:1.6.9.5'
2016-04-21 07:53:37 +02:00
compile 'com.factionsone:FactionsOne:1.2.2'
2016-04-02 06:06:24 +02:00
compile 'me.ryanhamshire:GriefPrevention:11.5.2'
compile 'com.massivecraft:mcore:7.0.1'
2016-04-19 08:14:24 +02:00
compile 'net.sacredlabyrinth.Phaed:PreciousStones:10.0.4-SNAPSHOT'
2016-04-02 06:06:24 +02:00
compile 'net.jzx7:regios:5.9.9'
compile 'com.bekvon.bukkit:residence:2.6.6.6'
compile 'com.palmergames.bukkit:towny:0.84.0.9'
compile 'com.worldcretornica:plotme_core:0.16.3'
compile 'junit:junit:4.11'
}
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'
// We only want the shadow jar produced
jar.enabled = false
shadowJar {
dependencies {
include(dependency(':core'))
include(dependency('org.mcstats.bukkit:metrics:R7'))
}
relocate 'org.mcstats', 'com.plotsquared.stats'
2016-04-14 19:27:50 +02:00
archiveName = "${parent.name}-${project.name}.jar"
2016-04-02 06:06:24 +02:00
destinationDir = file '../target'
}
shadowJar.doLast {
task ->
ant.checksum file: task.archivePath
}
build.dependsOn(shadowJar);