mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-23 01:27:40 +01:00
43 lines
1.0 KiB
Plaintext
43 lines
1.0 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") }
|
||
|
}
|
||
|
mavenCentral {
|
||
|
content { includeGroup("net.kyori") }
|
||
|
}
|
||
|
}
|
||
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
|
}
|
||
|
|
||
|
pluginManagement {
|
||
|
includeBuild("build-logic")
|
||
|
}
|
||
|
|
||
|
rootProject.name = "EssentialsXParent"
|
||
|
|
||
|
// Modules
|
||
|
sequenceOf(
|
||
|
"",
|
||
|
"AntiBuild",
|
||
|
"Chat",
|
||
|
"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")
|