mirror of
https://github.com/AdrianKuta/android-challange-adrian-kuta.git
synced 2025-07-01 21:28:00 +02:00
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
pluginManagement {
|
|
includeBuild("build-logic")
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
// If the issue below gets fixed then the repositories blocks can come out the project modules and this can go back
|
|
// to being RepositoriesMode.FAIL_ON_PROJECT_REPOS
|
|
// https://github.com/GoogleCloudPlatform/artifact-registry-maven-tools/issues/71
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
gradle.startParameter.excludedTaskNames.addAll(listOf(":build-logic:convention:testClasses"))
|
|
|
|
rootProject.name = "Flights"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
include(":app")
|
|
include(":core:util")
|
|
include(":domain:types")
|
|
include(":model:data:api")
|
|
include(":model:data:room")
|
|
include(":model:data:simple")
|
|
include(":model:datasource:characters")
|
|
include(":model:repository")
|
|
include(":ui:designsystem")
|
|
include(":ui:home")
|
|
include(":ui:sharedui")
|