Skip to content

Commit

Permalink
Merge branch 'main' into annotations-shared
Browse files Browse the repository at this point in the history
  • Loading branch information
WhosNickDoglio committed Jun 29, 2024
2 parents 88d6b1e + dda0f19 commit 7de5a6b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
18 changes: 16 additions & 2 deletions build-logic/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,30 @@ rootProject.name = "build-logic"

pluginManagement {
repositories {
exclusiveContent {
forRepository { google() }
filter {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroup("com.google.testing.platform")
}
}
mavenCentral()
google()
gradlePluginPortal()
}
}

dependencyResolutionManagement {
repositories {
exclusiveContent {
forRepository { google() }
filter {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroup("com.google.testing.platform")
}
}
mavenCentral()
google()
}

versionCatalogs { create("libs") { from(files("../gradle/libs.versions.toml")) } }
Expand Down
18 changes: 16 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,31 @@ rootProject.name = "dagger-rules"
pluginManagement {
includeBuild("build-logic")
repositories {
exclusiveContent {
forRepository { google() }
filter {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroup("com.google.testing.platform")
}
}
mavenCentral()
google()
gradlePluginPortal()
}
}

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
exclusiveContent {
forRepository { google() }
filter {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroup("com.google.testing.platform")
}
}
mavenCentral()
google()
}
}

Expand Down

0 comments on commit 7de5a6b

Please sign in to comment.