mirror of
https://github.com/alexcrea/CustomAnvil.git
synced 2026-06-23 08:14:00 +02:00
20 lines
No EOL
561 B
Kotlin
20 lines
No EOL
561 B
Kotlin
rootProject.name = "CustomAnvil"
|
|
|
|
// NMS subproject
|
|
include("nms:nms-common")
|
|
findProject(":nms:nms-common")?.name = "nms-common"
|
|
|
|
|
|
val reobfNMS = providers.gradleProperty("subprojects.reobfnms")
|
|
.get().split(",")
|
|
|
|
for (nmsPart in reobfNMS) {
|
|
include("nms:$nmsPart")
|
|
findProject(":nms:$nmsPart")?.name = nmsPart
|
|
}
|
|
|
|
// compatibility subprojects
|
|
include(":impl:LegacyEcoEnchant")
|
|
findProject(":impl:LegacyEcoEnchant")?.name = "LegacyEcoEnchant"
|
|
include("impl:ExcellentEnchant5_3")
|
|
findProject(":impl:ExcellentEnchant5_3")?.name = "ExcellentEnchant5_3" |