mobile-wallet/settings.gradle.kts

23 lines
530 B
Plaintext
Raw Normal View History

2024-01-13 23:24:35 +00:00
pluginManagement {
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/")
}
}
2024-01-24 11:44:19 +00:00
rootProject.name = "mobile-wallet"
2024-01-13 23:24:35 +00:00
include(":mifospay")
include(":core")