mirror of
https://github.com/AdrianKuta/android-challange-adrian-kuta.git
synced 2025-07-01 21:37:59 +02:00
Initial commit
This commit is contained in:
@ -1,6 +1,5 @@
|
||||
rootProject.name = "AndroidChallenge"
|
||||
|
||||
pluginManagement {
|
||||
includeBuild("build-logic")
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
@ -8,10 +7,29 @@ pluginManagement {
|
||||
}
|
||||
}
|
||||
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")
|
||||
|
Reference in New Issue
Block a user