mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-15 07:05:52 +01:00
22 lines
443 B
Groovy
22 lines
443 B
Groovy
|
rootProject.name = 'EssentialsXParent'
|
||
|
|
||
|
// Modules
|
||
|
[
|
||
|
"",
|
||
|
"AntiBuild",
|
||
|
"Chat",
|
||
|
"GeoIP",
|
||
|
"Protect",
|
||
|
"Spawn",
|
||
|
"XMPP",
|
||
|
].each {
|
||
|
include(":EssentialsX$it")
|
||
|
project(":EssentialsX$it").projectDir = file("Essentials$it")
|
||
|
}
|
||
|
|
||
|
// Providers
|
||
|
include(':providers:BaseProviders')
|
||
|
include(':providers:NMSReflectionProvider')
|
||
|
include(':providers:PaperProvider')
|
||
|
include(':providers:1_8Provider')
|