Files
Rankup3/build.gradle
T
okx-code e4ffa0425f 3.5-beta.5
Update gradle wrapper
Fix current_prestige and next_prestige placeholders
2019-04-15 22:28:38 +01:00

44 lines
1.1 KiB
Groovy

plugins {
id 'java'
}
group 'sh.okx'
version '3.5-beta.5'
repositories {
mavenCentral()
mavenLocal()
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/'
}
maven {
url 'https://raw.github.com/PyvesB/AdvancedAchievements/mvn-repo/'
}
maven {
url 'https://jitpack.io'
}
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.6'
annotationProcessor 'org.projectlombok:lombok:1.18.6'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
compile('net.milkbowl.vault:VaultAPI:1.7') {
exclude group: 'org.bukkit'
}
compile 'me.clip:placeholderapi:2.9.2'
compile 'com.hm.achievement:advanced-achievements-api:1.1.0'
// if compiling this you will have to download and install mcMMO locally
compile 'com.gmail.nossr50.mcMMO:mcMMO:2.1.+'
compile 'com.github.Ben12345rocks:VotingPlugin:5.18.2'
}