Skip to content

Commit e059a96

Browse files
committed
jcenter repository
1 parent 8db1733 commit e059a96

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

README.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,24 +34,18 @@ Modules that provide coroutine dispatchers for various single-threaded UI librar
3434

3535
> Note that these libraries are experimental and are subject to change.
3636
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).
3938
These libraries require kotlin compiler version to be at least `1.1.0` and
4039
require kotlin runtime of the same version as a dependency.
4140

4241
### Maven
4342

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:
4644

4745
```xml
4846
<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>
5549
</repository>
5650
```
5751

@@ -75,13 +69,11 @@ And make sure that you use the right Kotlin version:
7569

7670
### Gradle
7771

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:
7973

8074
```groovy
8175
repositories {
82-
maven {
83-
url "http://dl.bintray.com/kotlin/kotlin-eap-1.1"
84-
}
76+
jcenter()
8577
}
8678
```
8779

0 commit comments

Comments
 (0)