9
0
mirror of https://gitlab.com/SamB440/rpgregions-2.git synced 2025-12-27 10:49:08 +00:00
Files
rpgregions-2/api/build.gradle
2021-03-26 18:58:26 +00:00

69 lines
2.0 KiB
Groovy

plugins {
id 'java'
id 'maven'
}
group = pluginGroup
version = pluginVersion
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
name = 'papermc-repo'
url = 'https://papermc.io/repo/repository/maven-public/'
}
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/groups/public/'
}
maven {
name = 'CodeMC'
url = 'https://repo.codemc.org/repository/maven-public'
}
maven { url = "https://repo.aikar.co/content/groups/aikar/" }
maven { url = "https://jitpack.io" }
// PAPI
maven {
url = 'http://repo.extendedclip.com/content/repositories/placeholderapi/'
}
// MythicMobs
maven {
url = 'https://mvn.lumine.io/repository/maven-public/'
}
flatDir { dir '../libraries' }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.5'
testImplementation 'com.github.seeseemelk:MockBukkit-v1.15:0.3.0-SNAPSHOT'
testImplementation 'org.reflections:reflections:0.9.12'
implementation 'com.gitlab.samb440:languagy:2.0.3-RELEASE' // languagy
compileOnly 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT' // spigot
compileOnly 'com.github.MilkBowl:VaultAPI:1.7' // vault
compileOnly 'me.clip:placeholderapi:2.10.4' // PAPI
compileOnly name: 'AlonsoLevels_v2.0-BETA' // alonsolevels
compileOnly 'com.github.shynixn.headdatabase:hdb-api:1.0' // head database
compileOnly 'org.jetbrains:annotations:19.0.0'
compileOnly ('com.sk89q.worldedit:worldedit-bukkit:7.2.0-SNAPSHOT') {
exclude group: 'com.google'
exclude group: 'org.bukkit'
exclude group: 'org.spigotmc'
}
compileOnly ('com.sk89q.worldguard:worldguard-bukkit:7.0.4-SNAPSHOT') {
exclude group: 'com.destroystokyo.paper'
exclude group: 'org.spigotmc'
}
compileOnly 'io.lumine.xikage:MythicMobs:4.9.1'
implementation 'io.papermc:paperlib:1.0.4' // paperlib - async teleport on Paper
}