mirror of
https://github.com/mollyim/mollyim-android.git
synced 2025-05-12 13:20:37 +01:00
Restrict Google maven repository scope in settings.gradle.kts
This commit is contained in:
parent
281badd840
commit
1482aaec08
1 changed files with 7 additions and 1 deletions
|
@ -9,7 +9,13 @@ pluginManagement {
|
|||
dependencyResolutionManagement {
|
||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
google()
|
||||
google {
|
||||
content {
|
||||
includeGroupByRegex("com\\.android(\\..*)?")
|
||||
includeGroupByRegex("com\\.google(\\..*)?")
|
||||
includeGroupByRegex("androidx?(\\..*)?")
|
||||
}
|
||||
}
|
||||
mavenCentral()
|
||||
mavenLocal {
|
||||
content {
|
||||
|
|
Loading…
Reference in a new issue