private final AetherSettings settings = new AetherSettings();
private final boolean verbose;
public Aether(boolean verbose){
ServiceLocator locator = newServiceLocator();
this.verbose = verbose;
this.repoSystem = locator.getService( RepositorySystem.class );
this.installer = locator.getService( Installer.class );
repos.add( new Builder( "central",
"default",
"http://repo2.maven.org/maven2" ).build() );
}