Не удается разрешить 'com.atlassian.jira.rest.client.internal.jersey.JerseyJiraRestClientFactory'
Я пытаюсь извлечь урок по использованию клиентской библиотеки Java JEST REST с этой страницы https://ecosystem.atlassian.net/wiki/display/JRJC/Tutorial. Но My IDE (Eclipse) не может найти класс 'com.atlassian.jira.rest.client.internal.jersey.JerseyJiraRestClientFactory'.
Мой файл pom.xml:
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ru.trust.jira</groupId>
<artifactId>example</artifactId>
<version>1.0-SNAPSHOT</version>
<repositories>
<repository>
<id>atlassian-public</id>
<url>https://m2proxy.atlassian.com/repository/public</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
</repositories>
<parent>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-parent</artifactId>
<version>2.0.0-m19</version>
</parent>
<pluginRepositories>
<pluginRepository>
<id>atlassian-public</id>
<url>https://m2proxy.atlassian.com/repository/public</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</releases>
<snapshots>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-core</artifactId>
<version>2.0.0-m31</version>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-api</artifactId>
<version>2.0.0-m31</version>
</dependency>
</dependencies>
Что еще нужно добавить модуль для устранения ошибки? Где это скрывает класс?
Извините за мой плохой английский.
1 ответ
Решение
Это руководство не совместимо с Jira REST Client 2.0. Надо смотреть Перенос с JRJC 1.x на 2.x