236237238239240241242243244245246
final String error = "Failed to set remote repositories."; throw new RepositoryException( error, e ); } if( defaults.containsKey( REPOSITORY_PROXY_HOST ) ) { put( REPOSITORY_PROXY_HOST, new Integer( defaults.getProperty( REPOSITORY_PROXY_HOST ) ) );
242243244245246247248249250251252
{ put( REPOSITORY_PROXY_HOST, new Integer( defaults.getProperty( REPOSITORY_PROXY_HOST ) ) ); if( defaults.containsKey( REPOSITORY_PROXY_PORT ) ) { put( REPOSITORY_PROXY_PORT, new Integer( defaults.getProperty( REPOSITORY_PROXY_PORT ) ) ); }
249250251252253254255256257258259
put( REPOSITORY_PROXY_PORT, new Integer( defaults.getProperty( REPOSITORY_PROXY_PORT ) ) ); } if( defaults.containsKey( REPOSITORY_PROXY_USERNAME ) ) { put( REPOSITORY_PROXY_USERNAME, defaults.getProperty( REPOSITORY_PROXY_USERNAME ) ); }
256257258259260261262263264265266
put( REPOSITORY_PROXY_USERNAME, defaults.getProperty( REPOSITORY_PROXY_USERNAME ) ); } if( defaults.containsKey( REPOSITORY_PROXY_PASSWORD ) ) { put( REPOSITORY_PROXY_PASSWORD, defaults.getProperty( REPOSITORY_PROXY_PASSWORD ) ); }