Awoocord/settings.gradle.kts

16 lines
366 B
Text
Raw Normal View History

2025-05-29 03:12:05 +10:00
rootProject.name = "Awoocord"
// This file sets what projects are included. Every time you add a new project, you must add it
// to the includes below.
// Plugins are included like this
include(
2025-06-23 22:22:12 +10:00
"AlignThreads",
2025-05-29 03:12:05 +10:00
"Scout"
)
rootProject.children.forEach {
// Change kotlin to java if you'd rather use java
it.projectDir = file("plugins/${it.name}")
}