Suppress "resolving dependencies" when --quiet
Update Spring CLI so that the "resolving dependencies" message is suppressed when `run --quiet` is used. Fixes gh-8946
This commit is contained in:
@@ -81,6 +81,11 @@ public class GroovyGrabDependencyResolverTests {
|
||||
return new String[] { "." };
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isQuiet() {
|
||||
return false;
|
||||
}
|
||||
|
||||
};
|
||||
this.resolver = new GroovyGrabDependencyResolver(configuration);
|
||||
}
|
||||
|
||||
@@ -59,7 +59,7 @@ public class AetherGrapeEngineTests {
|
||||
dependencyResolutionContext.addDependencyManagement(
|
||||
new SpringBootDependenciesDependencyManagement());
|
||||
return AetherGrapeEngineFactory.create(this.groovyClassLoader,
|
||||
repositoryConfigurations, dependencyResolutionContext);
|
||||
repositoryConfigurations, dependencyResolutionContext, false);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user