2025-05-29 03:12:05 +10:00
|
|
|
rootProject.name = "Awoocord"
|
|
|
|
|
|
2025-10-08 01:11:59 +11:00
|
|
|
val plugins = mapOf(
|
|
|
|
|
"ComponentsV2Beta" to "canary/ComponentsV2",
|
|
|
|
|
"SlashCommandsFixBeta" to "canary/SlashCommandsFix",
|
|
|
|
|
"Scout" to "plugins/Scout",
|
|
|
|
|
"RoleBlocks" to "plugins/Zinnia",
|
2025-05-29 03:12:05 +10:00
|
|
|
)
|
|
|
|
|
|
2025-10-08 01:11:59 +11:00
|
|
|
include(*plugins.keys.toTypedArray())
|
|
|
|
|
|
|
|
|
|
rootProject.children.forEach { project ->
|
|
|
|
|
plugins[project.name]?.let {
|
|
|
|
|
project.projectDir = file(it)
|
|
|
|
|
}
|
2025-05-29 03:12:05 +10:00
|
|
|
}
|