uk.co.codera.ci.tooling.sonar.HttpClientFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codera-ci-tooling-service-sonar Show documentation
Show all versions of codera-ci-tooling-service-sonar Show documentation
Provides integration with sonar such as deleting projects automatically.
package uk.co.codera.ci.tooling.sonar;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
public class HttpClientFactory {
public CloseableHttpClient create() {
return HttpClientBuilder.create().build();
}
}