Commit e97b703a authored by Dave Syer's avatar Dave Syer

Additionally make package method public

parent f62abade
...@@ -79,7 +79,7 @@ public class DependencyResolutionContext { ...@@ -79,7 +79,7 @@ public class DependencyResolutionContext {
.get(getIdentifier(group, artifact)); .get(getIdentifier(group, artifact));
} }
void addManagedDependencies(List<Dependency> dependencies) { public void addManagedDependencies(List<Dependency> dependencies) {
this.managedDependencies.addAll(dependencies); this.managedDependencies.addAll(dependencies);
for (Dependency dependency : dependencies) { for (Dependency dependency : dependencies) {
this.managedDependencyByGroupAndArtifact.put(getIdentifier(dependency), this.managedDependencyByGroupAndArtifact.put(getIdentifier(dependency),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment