mirror of
https://gitlab.com/SamB440/rpgregions-2.git
synced 2026-01-04 15:31:38 +00:00
48 lines
1.2 KiB
Groovy
48 lines
1.2 KiB
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = pluginGroup
|
|
version = pluginVersion
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 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, repo only accessible on request
|
|
maven {
|
|
url = 'https://campfire.islandearth.net/maven/'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
compileOnly 'com.sk89q.worldguard:worldguard-legacy:6.2' // worldguard legacy
|
|
compileOnly 'com.sk89q.worldedit:worldedit-core:6.1.4-SNAPSHOT' // worldedit
|
|
compileOnly 'net.islandearth:languagy:2.0.0-SNAPSHOT' // languagy
|
|
compileOnly 'org.spigotmc:spigot-api:1.12-R0.1-SNAPSHOT' // spigot
|
|
compileOnly project(':rpgregions')
|
|
compileOnly project(':api')
|
|
}
|