Jira Rest Java Client: brak ApacheHttpClientConfig z Jersey

Idę zaJRJC tutorial i druga linia tutaj:

final JerseyJiraRestClientFactory factory = new JerseyJiraRestClientFactory();
final JiraRestClient restClient = factory.createWithBasicHttpAuthentication(jiraServerUri, username, password);

Rzuca to:

Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/jersey/client/apache/config/ApacheHttpClientConfig at com.atlassian.jira.rest.client.internal.jersey.JerseyJiraRestClientFactory.create(JerseyJiraRestClientFactory.java:34)
... 
Caused by: java.lang.ClassNotFoundException: com.sun.jersey.client.apache.config.ApacheHttpClientConfig
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)

Wymagam Jersey w ten sposób w moim pom:

<dependency>
    <groupId>com.sun.jersey</groupId>
    <artifactId>jersey-client</artifactId>
    <version>1.9</version>
</dependency>

Tworzy się bez żadnych problemów (montaż mvn: single, ponieważ potrzebuję samodzielnego jar). Jakieś pomysły, co poszło nie tak?

questionAnswers(1)

yourAnswerToTheQuestion