mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-13 06:15:08 +01:00
0861427bf3
Co-authored-by: MD <1917406+mdcfe@users.noreply.github.com> Co-authored-by: pop4959 <pop4959@gmail.com> Co-authored-by: Riley Park <riley.park@meino.net> Co-authored-by: Jason <11360596+jpenilla@users.noreply.github.com>
50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
dependencyResolutionManagement {
|
|
repositories {
|
|
maven("https://hub.spigotmc.org/nexus/content/groups/public/")
|
|
maven("https://papermc.io/repo/repository/maven-public/")
|
|
maven("https://jitpack.io") {
|
|
content { includeGroup("com.github.milkbowl") }
|
|
}
|
|
maven("https://repo.codemc.org/repository/maven-public") {
|
|
content { includeGroup("org.bstats") }
|
|
}
|
|
maven("https://m2.dv8tion.net/releases/") {
|
|
content { includeGroup("net.dv8tion") }
|
|
}
|
|
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/") {
|
|
content { includeGroup("me.clip") }
|
|
}
|
|
mavenCentral {
|
|
content { includeGroup("net.kyori") }
|
|
}
|
|
}
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
}
|
|
|
|
pluginManagement {
|
|
includeBuild("build-logic")
|
|
}
|
|
|
|
rootProject.name = "EssentialsXParent"
|
|
|
|
// Modules
|
|
sequenceOf(
|
|
"",
|
|
"AntiBuild",
|
|
"Chat",
|
|
"Discord",
|
|
"GeoIP",
|
|
"Protect",
|
|
"Spawn",
|
|
"XMPP",
|
|
).forEach {
|
|
include(":EssentialsX$it")
|
|
project(":EssentialsX$it").projectDir = file("Essentials$it")
|
|
}
|
|
|
|
// Providers
|
|
include(":providers:BaseProviders")
|
|
include(":providers:NMSReflectionProvider")
|
|
include(":providers:PaperProvider")
|
|
include(":providers:1_8Provider")
|