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

81 lines
2.3 KiB
Groovy

plugins {
id 'java'
id 'maven'
}
group = pluginGroup
version = pluginVersion
sourceCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
maven { url 'https://jitpack.io' }
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/" }
// worldguard
maven { url "https://maven.enginehub.org/repo/" }
// PAPI
maven { url 'http://repo.extendedclip.com/content/repositories/placeholderapi/' }
// plan
maven {
name 'bintray'
url 'https://dl.bintray.com/rsl1122/Plan-repository'
}
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/public/' }
// MythicMobs
maven { url 'https://mvn.lumine.io/repository/maven-public/' }
maven { url 'https://repo.codemc.io/repository/maven-snapshots/' }
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
implementation 'io.papermc:paperlib:1.0.4' // paperlib - async teleport on Paper
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:20.1.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'
}