Files
TestProject/settings.gradle.kts
2026-02-27 12:50:54 +03:00

36 lines
656 B
Plaintext

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "TestProgect"
include(
":app",
":testUtils",
":style",
":presentation",
":data",
":domain:domain",
":domain:domain_impl",
// features:
// TODO
// auth
// "feature:auth:contract",
// "feature:auth:contract_ui",
// "feature:auth:data",
// "feature:auth:domain",
// "feature:auth:presentation",
//
//
)