Http utilities for easy request building and execution
Wrapper around Apache Http client
<dependency>
<groupId>com.zandero</groupId>
<artifactId>http</artifactId>
<version>1.3</version>
</dependency>
HttpRequestBase req = HttpUtils.get("http://httpbin.org/get");
HttpResponse res = HttpUtils.execute(req);
HttpResponse res = HttpUtils.executeAsync(executor, req, future);