WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
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-13Lines changed: 3 additions & 13 deletions
Display the source diff
Display the rich diff
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