/**
* Конструктор по умолчанию
*/
public NugetClient() {
final ProxyOptions proxyOptions = PackageSourceFactory.getInstance().getOptions().getProxyOptions();
ClientConfig config = createClientConfig(proxyOptions);
client = ApacheHttpClient4.create(config);
client.setFollowRedirects(Boolean.TRUE);
client.addFilter(new GZIPContentEncodingFilter());
webResource = client.resource(DEFAULT_REMOTE_STORAGE_URL);