I\'m following the JRJC tutorial, and the second line here:
final JerseyJiraRestClientFactory factory = new JerseyJiraRestClientFactory(); final JiraRestClient
Well, that was silly enough. jersey-client doesn't give you ApacheHttpClientConfig. That comes with jersey-apache-client. Here's the pom snippet.
<dependency> <groupId>com.sun.jersey.contribs</groupId> <artifactId>jersey-apache-client</artifactId> <version>1.9</version> </dependency>