mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 11:36:57 +00:00
34 lines
850 B
Plaintext
34 lines
850 B
Plaintext
pluginManagement {
|
|
includeBuild("build-logic")
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
maven("https://www.jitpack.io")
|
|
maven("https://plugins.gradle.org/m2/")
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://www.jitpack.io")
|
|
maven("https://plugins.gradle.org/m2/")
|
|
}
|
|
}
|
|
rootProject.name = "mobile-wallet"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
include(":mifospay")
|
|
include(":feature:auth")
|
|
include(":core:data")
|
|
include(":core:datastore")
|
|
include(":core:designsystem")
|
|
include(":core:ui")
|
|
include(":core:common")
|
|
include(":core:network")
|
|
include(":core:network")
|
|
include(":core:model")
|
|
include(":core:datastore-proto")
|