mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-02 08:50:17 +01:00
112da17614
commit91c78407cd
Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sun Aug 7 11:29:59 2016 +1000 Use a queue for expiry commit395d6364be
Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sun Aug 7 04:43:41 2016 +1000 Cache on fail as well commitfacd43700d
Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sun Aug 7 04:00:50 2016 +1000 Cache entity count every second commit1ae694ff5b
Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sun Aug 7 03:52:37 2016 +1000 Tweak entity counting commitc99dd1e74a
Author: Jesse Boyd <jessepaleg@gmail.com> Date: Sat Aug 6 00:10:11 2016 +1000 Needs sponge builds commitf408ac82be
Author: Alexander Söderberg <Sauilitired@users.noreply.github.com> Date: Fri Aug 5 12:13:39 2016 +0200 Update README.md commit9b95990ba6
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);
|