mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-01-19 16:59:36 +01:00
112da17614
commit 91c78407cd82501954460e3eec3fdca06dbf7184 Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sun Aug 7 11:29:59 2016 +1000 Use a queue for expiry commit 395d6364be702558c3c30cbe0273d7e466a41507 Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sun Aug 7 04:43:41 2016 +1000 Cache on fail as well commit facd43700d48686d071061f41667d969f4ce8388 Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sun Aug 7 04:00:50 2016 +1000 Cache entity count every second commit 1ae694ff5b83ffaff51d66d45499773fbb158902 Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sun Aug 7 03:52:37 2016 +1000 Tweak entity counting commit c99dd1e74aae450c2a3c24087155285c195fd587 Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sat Aug 6 00:10:11 2016 +1000 Needs sponge builds commit f408ac82be0f7186c58963cc794b081400b39e53 Author: Alexander Söderberg <Sauilitired@users.noreply.github.com> Date: Fri Aug 5 12:13:39 2016 +0200 Update README.md commit 9b95990ba60181bc1252b61b651e51e7e67a8f5e Author: Alexander Söderberg <Sauilitired@users.noreply.github.com> Date: Thu Aug 4 16:50:37 2016 +0200 Update this here as well
43 lines
1.0 KiB
Groovy
43 lines
1.0 KiB
Groovy
repositories {
|
|
maven {url "https://hub.spigotmc.org/nexus/content/groups/public/"}
|
|
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/"}
|
|
maven {url "http://nexus.hc.to/content/repositories/pub_releases"}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':Core')
|
|
compile 'org.spigotmc:spigot-api:1.10.2-R0.1-SNAPSHOT'
|
|
compile 'net.milkbowl.vault:VaultAPI:1.6'
|
|
}
|
|
|
|
sourceCompatibility = 1.7
|
|
targetCompatibility = 1.7
|
|
|
|
processResources {
|
|
from('src/main/resources') {
|
|
include 'plugin.yml'
|
|
expand(
|
|
name: project.parent.name,
|
|
version: project.parent.version
|
|
)
|
|
}
|
|
}
|
|
// We only want the shadow jar produced
|
|
jar.enabled = false
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency(':Core'))
|
|
}
|
|
relocate('org.mcstats', 'com.plotsquared.stats')
|
|
archiveName = "${parent.name}-${project.name}-${parent.version}.jar"
|
|
destinationDir = file '../target'
|
|
}
|
|
|
|
shadowJar.doLast {
|
|
task ->
|
|
ant.checksum file: task.archivePath
|
|
}
|
|
|
|
build.dependsOn(shadowJar);
|