Skip to content

Commit

Permalink
Clean up settings (#728)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredsburrows authored Oct 11, 2024
1 parent 6f1719c commit f4e9a0f
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
pluginManagement {
repositories {
mavenCentral()
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
Expand All @@ -16,15 +16,14 @@ dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)

repositories {
mavenCentral()
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
gradlePluginPortal()
mavenCentral()
}
}

Expand Down

0 comments on commit f4e9a0f

Please sign in to comment.