onomatopoeia-front/settings.gradle.kts
2025-02-18 18:03:34 +03:00

27 lines
612 B
Plaintext

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 = "Onomatopoeia-front"
include(":presentation")
include(":presentation")
include(":domain")
include(":data")