foundation/settings.gradle.kts

20 lines
370 B
Plaintext
Raw Normal View History

2021-12-19 02:05:59 +00:00
rootProject.name = "foundation"
2021-12-21 08:58:44 +00:00
2023-01-26 17:08:48 +00:00
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven(url = "https://gitlab.com/api/v4/projects/42873094/packages/maven")
}
}
2021-12-21 08:58:44 +00:00
include(
":common-plugin",
2023-01-29 03:35:10 +00:00
":common-heimdall",
2021-12-21 08:58:44 +00:00
":foundation-core",
":foundation-bifrost",
2023-01-28 08:21:14 +00:00
":foundation-chaos",
2023-01-29 03:35:10 +00:00
":foundation-heimdall",
":tool-gjallarhorn",
2021-12-21 08:58:44 +00:00
)