mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2025-12-24 15:47:53 -05:00
27 lines
654 B
Groovy
27 lines
654 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
filter {
|
|
// limit jitpack repository to these groups
|
|
includeGroup "com.github.yalantis"
|
|
includeGroup "com.github.invissvenska"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rootProject.name = "Catima"
|
|
include ':app'
|