3.7 add prestige-based requirements
This commit is contained in:
+70
-70
@@ -1,71 +1,71 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id "io.freefair.lombok" version "4.1.6"
|
||||
}
|
||||
|
||||
group 'sh.okx'
|
||||
version '3.7-beta'
|
||||
|
||||
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/'
|
||||
}
|
||||
// for plugins without repos, namely mcmmo, votingplugin, and towny
|
||||
maven {
|
||||
url 'https://jitpack.io'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
||||
compileOnly 'org.jetbrains:annotations:16.0.2'
|
||||
implementation 'org.spigotmc:spigot:1.15.2-R0.1-SNAPSHOT'
|
||||
implementation('com.github.Realizedd:TokenManager:3.2.4') {
|
||||
transitive = false
|
||||
}
|
||||
|
||||
implementation('net.milkbowl.vault:VaultAPI:1.7') {
|
||||
exclude group: 'org.bukkit'
|
||||
}
|
||||
implementation 'me.clip:placeholderapi:2.9.2'
|
||||
implementation 'com.hm.achievement:advanced-achievements-api:1.1.0'
|
||||
implementation('com.github.mcMMO-Dev:mcMMO:601297') {
|
||||
exclude group: 'com.sk89q.worldguard'
|
||||
}
|
||||
implementation 'com.github.Ben12345rocks:VotingPlugin:5.18.2'
|
||||
implementation 'com.github.LlmDl:Towny:25fc18a'
|
||||
}
|
||||
|
||||
// automatically copy the version to plugin.yml
|
||||
processResources {
|
||||
// do this again whenever version changes
|
||||
inputs.property 'version', project.version
|
||||
|
||||
// copy plugin.yml and replace version
|
||||
from(sourceSets.main.resources.srcDirs) {
|
||||
include 'plugin.yml'
|
||||
expand 'version': project.version
|
||||
}
|
||||
|
||||
// copy everything else
|
||||
from(sourceSets.main.resources.srcDirs) {
|
||||
exclude 'plugin.yml'
|
||||
}
|
||||
}
|
||||
|
||||
task spigot(type: Jar) {
|
||||
from sourceSets.main.runtimeClasspath
|
||||
destinationDirectory = file("./spigot/plugins/")
|
||||
archiveFileName = "Rankup.jar"
|
||||
plugins {
|
||||
id 'java'
|
||||
id "io.freefair.lombok" version "4.1.6"
|
||||
}
|
||||
|
||||
group 'sh.okx'
|
||||
version '3.7-beta'
|
||||
|
||||
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/'
|
||||
}
|
||||
// for plugins without repos, namely mcmmo, votingplugin, and towny
|
||||
maven {
|
||||
url 'https://jitpack.io'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
||||
compileOnly 'org.jetbrains:annotations:16.0.2'
|
||||
implementation 'org.spigotmc:spigot:1.15.2-R0.1-SNAPSHOT'
|
||||
implementation('com.github.Realizedd:TokenManager:3.2.4') {
|
||||
transitive = false
|
||||
}
|
||||
|
||||
implementation('net.milkbowl.vault:VaultAPI:1.7') {
|
||||
exclude group: 'org.bukkit'
|
||||
}
|
||||
implementation 'me.clip:placeholderapi:2.9.2'
|
||||
implementation 'com.hm.achievement:advanced-achievements-api:1.1.0'
|
||||
implementation('com.github.mcMMO-Dev:mcMMO:601297') {
|
||||
exclude group: 'com.sk89q.worldguard'
|
||||
}
|
||||
implementation 'com.github.Ben12345rocks:VotingPlugin:5.18.2'
|
||||
implementation 'com.github.LlmDl:Towny:25fc18a'
|
||||
}
|
||||
|
||||
// automatically copy the version to plugin.yml
|
||||
processResources {
|
||||
// do this again whenever version changes
|
||||
inputs.property 'version', project.version
|
||||
|
||||
// copy plugin.yml and replace version
|
||||
from(sourceSets.main.resources.srcDirs) {
|
||||
include 'plugin.yml'
|
||||
expand 'version': project.version
|
||||
}
|
||||
|
||||
// copy everything else
|
||||
from(sourceSets.main.resources.srcDirs) {
|
||||
exclude 'plugin.yml'
|
||||
}
|
||||
}
|
||||
|
||||
task spigot(type: Jar) {
|
||||
from sourceSets.main.runtimeClasspath
|
||||
destinationDirectory = file("./spigot/plugins/")
|
||||
archiveFileName = "Rankup.jar"
|
||||
}
|
||||
Reference in New Issue
Block a user