2024-01-13 23:24:35 +00:00
|
|
|
pluginManagement {
|
2024-01-22 04:02:41 +00:00
|
|
|
includeBuild("build-logic")
|
2024-01-13 23:24:35 +00:00
|
|
|
repositories {
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-05 11:01:06 +00:00
|
|
|
|
2024-01-13 23:24:35 +00:00
|
|
|
dependencyResolutionManagement {
|
2024-08-23 19:47:35 +00:00
|
|
|
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
|
2024-01-13 23:24:35 +00:00
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
maven("https://www.jitpack.io")
|
|
|
|
|
maven("https://plugins.gradle.org/m2/")
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-05 11:01:06 +00:00
|
|
|
|
2024-11-06 15:22:46 +00:00
|
|
|
plugins {
|
2024-09-05 11:01:06 +00:00
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
|
2024-09-06 10:19:46 +00:00
|
|
|
id("org.ajoberstar.reckon.settings") version("0.18.3")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
extensions.configure<org.ajoberstar.reckon.gradle.ReckonExtension> {
|
|
|
|
|
setDefaultInferredScope("patch")
|
|
|
|
|
stages("beta", "rc", "final")
|
|
|
|
|
setScopeCalc { java.util.Optional.of(org.ajoberstar.reckon.core.Scope.PATCH) }
|
|
|
|
|
setScopeCalc(calcScopeFromProp().or(calcScopeFromCommitMessages()))
|
|
|
|
|
setStageCalc(calcStageFromProp())
|
|
|
|
|
setTagWriter { it.toString() }
|
2024-09-05 11:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
2024-02-16 17:45:28 +00:00
|
|
|
rootProject.name = "mobile-wallet"
|
2024-01-13 23:24:35 +00:00
|
|
|
|
2024-01-22 04:02:41 +00:00
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
2024-11-06 15:22:46 +00:00
|
|
|
|
|
|
|
|
include(":mifospay-shared")
|
|
|
|
|
include(":mifospay-android")
|
|
|
|
|
include(":mifospay-desktop")
|
|
|
|
|
include(":mifospay-web")
|
2024-05-27 11:25:38 +00:00
|
|
|
|
2024-01-28 15:28:18 +00:00
|
|
|
include(":core:data")
|
2024-11-06 15:22:46 +00:00
|
|
|
include(":core:domain")
|
2024-01-28 15:28:18 +00:00
|
|
|
include(":core:datastore")
|
|
|
|
|
include(":core:designsystem")
|
|
|
|
|
include(":core:ui")
|
|
|
|
|
include(":core:common")
|
2024-02-17 14:46:06 +00:00
|
|
|
include(":core:network")
|
|
|
|
|
include(":core:network")
|
|
|
|
|
include(":core:model")
|
2024-03-24 19:32:15 +00:00
|
|
|
include(":core:analytics")
|
2024-05-27 11:25:38 +00:00
|
|
|
|
2024-08-23 19:47:35 +00:00
|
|
|
include(":feature:home")
|
2024-06-19 16:11:13 +00:00
|
|
|
include(":feature:history")
|
2024-06-17 17:23:12 +00:00
|
|
|
include(":feature:receipt")
|
2024-06-13 16:31:33 +00:00
|
|
|
include(":feature:faq")
|
2024-05-27 11:25:38 +00:00
|
|
|
include(":feature:auth")
|
|
|
|
|
include(":feature:make-transfer")
|
2024-05-27 12:55:33 +00:00
|
|
|
include(":feature:send-money")
|
2024-06-15 16:44:59 +00:00
|
|
|
include(":feature:notification")
|
2024-06-13 16:05:41 +00:00
|
|
|
include(":feature:editpassword")
|
2024-06-17 17:13:31 +00:00
|
|
|
include(":feature:kyc")
|
2024-06-17 17:11:54 +00:00
|
|
|
include(":feature:savedcards")
|
2024-06-18 11:08:15 +00:00
|
|
|
include(":feature:invoices")
|
2024-06-19 16:11:13 +00:00
|
|
|
include(":feature:invoices")
|
2024-06-19 16:10:23 +00:00
|
|
|
include(":feature:settings")
|
2024-06-19 02:35:13 +00:00
|
|
|
include(":feature:profile")
|
2024-06-20 15:14:54 +00:00
|
|
|
include(":feature:finance")
|
2024-06-20 15:14:13 +00:00
|
|
|
include(":feature:merchants")
|
2024-06-20 15:13:05 +00:00
|
|
|
include(":feature:accounts")
|
2024-06-20 15:10:48 +00:00
|
|
|
include(":feature:standing-instruction")
|
2024-06-20 15:09:50 +00:00
|
|
|
include(":feature:payments")
|
2024-06-23 15:54:57 +00:00
|
|
|
include(":feature:request-money")
|
2024-06-23 15:53:55 +00:00
|
|
|
include(":feature:upi-setup")
|
2024-06-22 04:24:54 +00:00
|
|
|
include(":feature:qr")
|
2024-08-25 23:34:39 +00:00
|
|
|
|
|
|
|
|
include(":libs:mifos-passcode")
|