mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-15 07:05:52 +01:00
9a23f806fe
Gradle is better than Maven, don't @ me. okay but actually it's [faster](https://www.youtube.com/watch?v=atuFSv2bLa8&feature=youtu.be&t=77), compiles and tests in parallel more efficiently, and more epic stuff).
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')
|