2025-05-29 03:12:05 +10:00
|
|
|
rootProject.name = "Awoocord"
|
|
|
|
|
|
2025-07-16 02:06:10 +10:00
|
|
|
val canaryPlugins = arrayOf("ComponentsV2", "SlashCommandsFix")
|
2025-05-29 03:12:05 +10:00
|
|
|
|
|
|
|
|
include(
|
2025-07-15 17:53:33 +10:00
|
|
|
"Scout",
|
|
|
|
|
*canaryPlugins,
|
2025-05-29 03:12:05 +10:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
rootProject.children.forEach {
|
2025-07-15 17:53:33 +10:00
|
|
|
val isCanary = it.name in canaryPlugins
|
|
|
|
|
val dir = if (isCanary) "canary" else "plugins"
|
|
|
|
|
val name = it.name
|
2025-07-15 19:02:05 +10:00
|
|
|
if (isCanary) it.name += "Beta"
|
2025-07-15 17:53:33 +10:00
|
|
|
it.projectDir = file("${dir}/${name}")
|
2025-05-29 03:12:05 +10:00
|
|
|
}
|