Files
Rankup3/build.gradle
T
okx-code ae52d94fe8 3.1.2 bugfixes (see long description)
- add messages in /rank and /rankup for when the configuration has a rankup to a non-existent rank.
- add invalid rankup message
- fix error for placeholders when prestiging is disabled
- add message for when a rank has no requirements
2018-10-03 15:43:55 +01:00

37 lines
829 B
Groovy

plugins {
id 'java'
id 'net.ltgt.apt' version '0.10'
}
group 'sh.okx'
version '3.1.2'
repositories {
mavenCentral()
jcenter()
maven {
url 'http://nexus.hc.to/content/repositories/pub_releases'
}
maven {
url 'https://hub.spigotmc.org/nexus/content/groups/public/'
}
maven {
url 'http://repo.extendedclip.com/content/repositories/placeholderapi/'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'org.mockito:mockito-core:2.+'
compileOnly 'org.projectlombok:lombok:1.18.2'
apt "org.projectlombok:lombok:1.18.2"
compile 'org.spigotmc:spigot-api:1.12-R0.1-SNAPSHOT'
compile('net.milkbowl.vault:VaultAPI:1.6') {
exclude group: 'org.bukkit'
}
compile 'me.clip:placeholderapi:2.9.+'
}