Files
autarch/autarch_companion/settings.gradle.kts

19 lines
375 B
Kotlin
Raw Normal View History

2026-03-13 15:17:15 -07:00
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
rootProject.name = "Archon"
include(":app")