When I updated to 1.2 my application failed to deploy with a classnotfoundexception for the class HttpClientConnectionManager.
I had to add the http client dependency to my pom to fix this issue. I'm not sure why the dependency isn't included automatically.
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.1</version>
</dependency>
When I updated to 1.2 my application failed to deploy with a
classnotfoundexceptionfor the classHttpClientConnectionManager.I had to add the http client dependency to my pom to fix this issue. I'm not sure why the dependency isn't included automatically.