You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> *kotlin-atlassian-client* merges the libraries of the repositories *kotlin-http-client*, *kotlin-jira-client* and *kotlin-insight-client* originally implemented by @betacore.
The HTTP variant requires an implementation of the `kotlin-http-client`.
45
60
46
61
#### HTTP via Atlassian Applinks
@@ -53,18 +68,18 @@ Specify the following dependency for usage:
53
68
```xml
54
69
55
70
<dependency>
56
-
<groupId>com.linked-planet</groupId>
71
+
<groupId>com.linked-planet.client</groupId>
57
72
<artifactId>kotlin-jira-client-http</artifactId>
58
73
<version>${jira.client.version}</version>
59
74
</dependency>
60
75
<dependency>
61
-
<groupId>com.linked-planet</groupId>
76
+
<groupId>com.linked-planet.client</groupId>
62
77
<artifactId>kotlin-http-client-atlas</artifactId>
63
78
<version>${http.client.version}</version>
64
79
</dependency>
65
80
```
66
81
67
-
For client initialization take a look at the [ApplinkClientTest](kotlin-jira-client/kotlin-jira-client-test-applink/src/test/kotlin/it/ApplinkClientTest.kt).
82
+
For client initialization take a look at the [JiraApplinkClientTest](kotlin-jira-client-test-applink/src/test/kotlin/it/JiraApplinkClientTest.kt).
68
83
69
84
#### HTTP via Ktor
70
85
@@ -75,18 +90,18 @@ Specify the following dependency for usage:
75
90
```xml
76
91
77
92
<dependency>
78
-
<groupId>com.linked-planet</groupId>
93
+
<groupId>com.linked-planet.client</groupId>
79
94
<artifactId>kotlin-jira-client-http</artifactId>
80
95
<version>${jira.client.version}</version>
81
96
</dependency>
82
97
<dependency>
83
-
<groupId>com.linked-planet</groupId>
98
+
<groupId>com.linked-planet.client</groupId>
84
99
<artifactId>kotlin-http-client-ktor</artifactId>
85
100
<version>${http.client.version}</version>
86
101
</dependency>
87
102
```
88
103
89
-
For client initialization take a look at the [KtorClientTest](kotlin-jira-client/kotlin-jira-client-test-ktor/src/test/kotlin/KtorClientTest.kt).
104
+
For client initialization take a look at the [JiraKtorClientTest](kotlin-jira-client-test-ktor/src/test/kotlin/JiraKtorClientTest.kt).
0 commit comments