33 lines
809 B
Plaintext
33 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"
|
|
|
|
// core/data arrives with Batch 01 issue #5 — see docs/architecture/README.md
|
|
// for why a module is not created before it has contents.
|
|
include(":app")
|
|
include(":core:designsystem")
|
|
include(":core:database")
|
|
include(":core:datastore")
|
|
include(":domain:cycle")
|
|
include(":domain:prediction")
|