dbt-app/DBTApp/settings.gradle.kts
Clara Dautermann a341d7a920 Migrate to compose (#1)
The whole App has essentially been rebuilt to use compose

Reviewed-on: #1
Co-authored-by: Clara Dautermann <git@cdaut.de>
Co-committed-by: Clara Dautermann <git@cdaut.de>
2025-05-13 21:31:17 +02:00

23 lines
530 B
Kotlin

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "DBTApp"
include(":app")