32 lines
809 B
Plaintext
32 lines
809 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 = "Period"
|
||
|
|
|
||
|
|
// Four modules today. core/database and core/datastore arrive with Batch 01
|
||
|
|
// issues #4 and #5 — see docs/architecture/README.md for why a module is not
|
||
|
|
// created before it has contents.
|
||
|
|
include(":app")
|
||
|
|
include(":core:designsystem")
|
||
|
|
include(":domain:cycle")
|
||
|
|
include(":domain:prediction")
|