DEPRECATED: THIS IS IN FEIGN CORE AS OF VERSION 10.4.0
This library is a feign Client to use the java Google Http Client.
To use this, add to your classpath (via maven, or otherwise). Then cofigure Feign to use the GoogleHttpClient:
GitHub github = Feign.builder()
.client(new GoogleHttpClient())
.target(GitHub.class, "https://api.github.com");
This client is used in Sprout Social's production environment.