36 lines
656 B
Plaintext
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",
|
|
//
|
|
//
|
|
) |