You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within your build.gradle.kts file you can define exclusive content such, to limit where dependencies may be pulled form. I quite often see people use the regex like in the example below, which works, but matches to a much wider set of groups than they expect.
Within your build.gradle.kts file you can define exclusive content such, to limit where dependencies may be pulled form. I quite often see people use the regex like in the example below, which works, but matches to a much wider set of groups than they expect.
In this instance the regex should be something like
includeGroupByRegex("com\\.google(?:\..+|\Z)")
which will pull anything in com.goggle:foo and com.google.bar:foo
Expected Behavior
Add a new option for including, prehaps includeGroupByPrefix which automatically adds the regex for you correctly so you can just do
includeGroupByPrefix("com.google")
Current Behavior
Context
The text was updated successfully, but these errors were encountered: