|
6 | 6 | [](https://app.slack.com/client/T09229ZC6/C01A6KM1SBZ)
|
7 | 7 | [](https://discord.com/invite/graphos)
|
8 | 8 | [](https://github.com/apollographql/apollo-kotlin/actions/workflows/push.yml?query=branch%3Amain)
|
9 |
| -[](https://repo1.maven.org/maven2/com/apollographql/apollo3/) |
10 |
| -[](https://plugins.gradle.org/plugin/com.apollographql.apollo3) |
11 |
| -[](https://s01.oss.sonatype.org/content/repositories/snapshots/com/apollographql/apollo3/) |
| 9 | +[](https://repo1.maven.org/maven2/com/apollographql/apollo/) |
| 10 | +[](https://plugins.gradle.org/plugin/com.apollographql.apollo) |
| 11 | +[](https://s01.oss.sonatype.org/content/repositories/snapshots/com/apollographql/apollo/) |
12 | 12 | [](https://ge.apollographql.com/scans)
|
13 | 13 |
|
14 | 14 | | ☑️ Apollo Clients User Survey |
|
@@ -88,15 +88,15 @@ Add the plugin to your `build.gradle.kts`:
|
88 | 88 |
|
89 | 89 | ```kotlin
|
90 | 90 | plugins {
|
91 |
| - id("com.apollographql.apollo3") version "4.0.0-rc.1" |
| 91 | + id("com.apollographql.apollo") version "4.0.0-rc.1" |
92 | 92 | }
|
93 | 93 | ```
|
94 | 94 |
|
95 | 95 | Add the runtime dependency:
|
96 | 96 |
|
97 | 97 | ```kotlin
|
98 | 98 | dependencies {
|
99 |
| - implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-rc.1") |
| 99 | + implementation("com.apollographql.apollo:apollo-runtime:4.0.0-rc.1") |
100 | 100 | }
|
101 | 101 | ```
|
102 | 102 |
|
@@ -179,29 +179,29 @@ Installation instructions and more information can be found [here](https://githu
|
179 | 179 |
|
180 | 180 | ## Releases
|
181 | 181 |
|
182 |
| -The latest version is [](https://repo1.maven.org/maven2/com/apollographql/apollo3/) |
| 182 | +The latest version is [](https://repo1.maven.org/maven2/com/apollographql/apollo/) |
183 | 183 |
|
184 | 184 | Check the [changelog](https://github.com/apollographql/apollo-kotlin/releases) for the release history.
|
185 | 185 |
|
186 |
| -Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollographql/apollo3/). The plugin is additionally hosted on the [Gradle Plugin Portal](https://plugins.gradle.org/plugin/com.apollographql.apollo3) |
| 186 | +Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollographql/apollo/). The plugin is additionally hosted on the [Gradle Plugin Portal](https://plugins.gradle.org/plugin/com.apollographql.apollo) |
187 | 187 |
|
188 | 188 | ```kotlin
|
189 | 189 | plugins {
|
190 |
| - id("com.apollographql.apollo3") version "4.0.0-rc.1" |
| 190 | + id("com.apollographql.apollo") version "4.0.0-rc.1" |
191 | 191 | }
|
192 | 192 |
|
193 | 193 | repositories {
|
194 | 194 | mavenCentral()
|
195 | 195 | }
|
196 | 196 |
|
197 | 197 | dependencies {
|
198 |
| - implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-rc.1") |
| 198 | + implementation("com.apollographql.apollo:apollo-runtime:4.0.0-rc.1") |
199 | 199 |
|
200 | 200 | // Optional: if you want to use the normalized cache
|
201 |
| - implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-rc.1") |
| 201 | + implementation("com.apollographql.apollo:apollo-normalized-cache-sqlite:4.0.0-rc.1") |
202 | 202 | // Optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
|
203 | 203 | // and use apollo-api instead
|
204 |
| - implementation("com.apollographql.apollo3:apollo-api:4.0.0-rc.1") |
| 204 | + implementation("com.apollographql.apollo:apollo-api:4.0.0-rc.1") |
205 | 205 | }
|
206 | 206 | ```
|
207 | 207 |
|
|
0 commit comments