私はrest Javaクライアント経由でシンプルなJIRAログインを作成したいと思っていました。 Atlassianのウェブサイトのチュートリアルに続きました。Jiraは、JavaのrestAPI経由でログインするためのインポートを見つけることができません
私のjava:
import com.atlassian.jira.testkit.client.restclient.Issue;
public class UniRest {
public static void main(String[] args) {
final AsynchronousJiraRestClientFactory factory = new AsynchronousJiraRestClientFactory();
final JiraRestClient restClient = factory.createWithBasicHttpAuthentication("http://vle.atlassian.com", "admin", "admin");
try {
final Issue issue = restClient.getIssueClient().getIssue("TST-7").claim();
System.out.println(issue);
}
finally {
// cleanup the restClient
restClient.close();
}
}
}
私の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>com.example.plugins.tutorial</groupId>
<artifactId>UniRestTest</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client</artifactId>
<version>2.0.0-m19</version>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-core</artifactId>
<version>2.0.0-m8</version>
</dependency>
</dependencies>
</project>
私は時間のaswearや修正を探しています。本当にそれを見つけることはできません。明らかに私は間違ったことをしているか、どこかで何かを逃している。あなたは私がこの作業を手助けすることができますか?
問題私の問題を解決するJiraRestClient
とAsynchronousJiraRestClientFactory
のインポートが見つかりませんでした。あなたがアトラシアンのフォーラムからこの答えを試みることができる
Error:(6, 15) java: cannot find symbol symbol: class AsynchronousJiraRestClientFactory location: class UniRest
はありがとう、私は取得しています
エラーのは次のようにしています。私は馬鹿馬鹿しくしました。 <リポジトリ> アトラシアン、公共 https://maven.atlassian.com/repository/public リポジトリ>を追加することを忘れ –
Mjafko