mirror of
https://gitlab.com/SamB440/rpgregions-2.git
synced 2026-01-03 14:12:08 +00:00
47 lines
1.1 KiB
Groovy
47 lines
1.1 KiB
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
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/" }
|
|
|
|
// worldguard
|
|
maven { url "https://maven.enginehub.org/repo/" }
|
|
|
|
// languagy / residence
|
|
maven {
|
|
url = 'https://campfire.islandearth.net/maven/'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
compileOnly 'com.sk89q.worldguard:worldguard-bukkit:7.0.1-SNAPSHOT' // worldguard
|
|
compileOnly 'org.spigotmc:spigot-api:1.13-R0.1-SNAPSHOT' // spigot
|
|
compileOnly 'net.islandearth:languagy:2.0.0-SNAPSHOT' // languagy
|
|
compileOnly 'net.zrips:residence:4.9.0.6' // residence
|
|
compileOnly project(':api')
|
|
compileOnly project(':rpgregions')
|
|
}
|