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
In a multi-module project where one module depends on another, the sibling dependencies are included in the dependencies.lock and are always locked even if the filter would exclude it.
dependencyFilter = { String group, String name, String version -> !(group = "a.b.c" && name = "foo")}
If a.b.c:foo is a sibling transitive, it will still be locked to a specific version.
The text was updated successfully, but these errors were encountered:
In a multi-module project where one module depends on another, the sibling dependencies are included in the dependencies.lock and are always locked even if the filter would exclude it.
dependencyFilter = { String group, String name, String version -> !(group = "a.b.c" && name = "foo")}
If a.b.c:foo is a sibling transitive, it will still be locked to a specific version.
The text was updated successfully, but these errors were encountered: