33 lines
813 B
Plaintext
33 lines
813 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/datastore arrives with Batch 01 issue #4, and core/data with #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(":domain:cycle")
|
|
include(":domain:prediction")
|