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
Copy file name to clipboardExpand all lines: docs/topics/coroutines-basic-jvm.md
+3-13
Original file line number
Diff line number
Diff line change
@@ -32,11 +32,11 @@ dependencies {
32
32
```
33
33
</tabs>
34
34
35
-
This library is published to Bintray JCenter repository, so add the following:
35
+
This library is published to the [Maven Central repository](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core), so add the following:
36
36
37
37
```groovy
38
38
repositories {
39
-
jcenter()
39
+
mavenCentral()
40
40
}
41
41
```
42
42
@@ -77,17 +77,7 @@ Since we'll be using the [`kotlinx.coroutines`](https://github.com/Kotlin/kotlin
77
77
</dependencies>
78
78
```
79
79
80
-
This library is published to Bintray JCenter repository, so let us add it:
81
-
82
-
```xml
83
-
<repositories>
84
-
...
85
-
<repository>
86
-
<id>central</id>
87
-
<url>https://jcenter.bintray.com</url>
88
-
</repository>
89
-
</repositories>
90
-
```
80
+
This library is published to the [Maven Central repository](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core), which Maven will download from by default.
91
81
92
82
That's it, we are good to go and write code under `src/main/kotlin`.
0 commit comments