Close #27320: Include testing regex to Google Maven allowlist

When running UI tests locally, we found that the
`android-device-provider-local` dependency is no longer available on
mavenCentral. Our dependency repository uses various regex to allow only
google dependencies to be fetched from Google Maven, but somehow these
did not include the test ones everywhere.
pull/543/head
Jonathan Almeida 2 years ago committed by mergify[bot]
parent b6b892faab
commit 90fb56a251

@ -56,6 +56,7 @@ buildscript {
excludeGroupByRegex RepoMatching.androidx
excludeGroupByRegex RepoMatching.comGoogleAndroid
excludeGroupByRegex RepoMatching.comGoogleFirebase
excludeGroupByRegex RepoMatching.comGoogleTesting
excludeGroupByRegex RepoMatching.comAndroid
}
}
@ -115,6 +116,7 @@ allprojects {
includeGroupByRegex RepoMatching.androidx
includeGroupByRegex RepoMatching.comGoogleAndroid
includeGroupByRegex RepoMatching.comGoogleFirebase
includeGroupByRegex RepoMatching.comGoogleTesting
includeGroupByRegex RepoMatching.comAndroid
}
}
@ -134,6 +136,7 @@ allprojects {
excludeGroupByRegex RepoMatching.androidx
excludeGroupByRegex RepoMatching.comGoogleAndroid
excludeGroupByRegex RepoMatching.comGoogleFirebase
excludeGroupByRegex RepoMatching.comGoogleTesting
excludeGroupByRegex RepoMatching.comAndroid
}
}

Loading…
Cancel
Save