File tree Expand file tree Collapse file tree 1 file changed +6
-14
lines changed Expand file tree Collapse file tree 1 file changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -34,24 +34,18 @@ Modules that provide coroutine dispatchers for various single-threaded UI librar
34
34
35
35
> Note that these libraries are experimental and are subject to change.
36
36
37
- The libraries are published to [ kotlin-eap-1.1] ( https://bintray.com/kotlin/kotlin-eap-1.1/kotlinx.coroutines ) bintray repository.
38
-
37
+ The libraries are available via [ JCenter] ( https://bintray.com/bintray/jcenter ) .
39
38
These libraries require kotlin compiler version to be at least ` 1.1.0 ` and
40
39
require kotlin runtime of the same version as a dependency.
41
40
42
41
### Maven
43
42
44
- Add the bintray repository to ` <repositories> ` section (and also add ` pluginRepository ` to ` <pluginRepositories> ` ,
45
- if you're willing to get ` kotlin-maven-plugin ` from there):
43
+ Add Bintray JCenter repository to ` <repositories> ` section:
46
44
47
45
``` xml
48
46
<repository >
49
- <snapshots >
50
- <enabled >false</enabled >
51
- </snapshots >
52
- <id >dl</id >
53
- <name >bintray</name >
54
- <url >http://dl.bintray.com/kotlin/kotlin-eap-1.1</url >
47
+ <id >central</id >
48
+ <url >http://jcenter.bintray.com</url >
55
49
</repository >
56
50
```
57
51
@@ -75,13 +69,11 @@ And make sure that you use the right Kotlin version:
75
69
76
70
### Gradle
77
71
78
- Add the bintray repository (and also add it to ` buildScript ` section, if you're willing to get ` kotlin-gradle-plugin ` from there) :
72
+ Add Bintray JCenter repository:
79
73
80
74
``` groovy
81
75
repositories {
82
- maven {
83
- url "http://dl.bintray.com/kotlin/kotlin-eap-1.1"
84
- }
76
+ jcenter()
85
77
}
86
78
```
87
79
You can’t perform that action at this time.
0 commit comments