Skip to content

Commit 1dccb67

Browse files
committed
Use 1.1.0-beta-17 version
1 parent ed7b864 commit 1dccb67

File tree

2 files changed

+24
-17
lines changed

2 files changed

+24
-17
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# kotlinx.coroutines
22

3-
Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1-Beta release.
3+
Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0-beta-17 release.
44
It contains worked-out implementation of coroutine builders, suspending functions, and contexts that are
55
used as examples in
66
[Kotlin coroutines design document](https://github.com/Kotlin/kotlin-coroutines/blob/master/kotlin-coroutines-informal.md)
@@ -70,6 +70,14 @@ Add dependencies (you can also add other modules that you need):
7070
</dependency>
7171
```
7272

73+
And make sure that you use the right Kotlin version:
74+
75+
```xml
76+
<properties>
77+
<kotlin.version>1.1.0-beta-17</kotlin.version>
78+
</properties>
79+
```
80+
7381
### Gradle
7482

7583
Add the bintray repository (and also add it to `buildScript` section, if you're willing to get `kotlin-gradle-plugin` from there):
@@ -87,3 +95,11 @@ Add dependencies (you can also add other modules that you need):
8795
```groovy
8896
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.3-beta'
8997
```
98+
99+
And make sure that you use the right Kotlin version:
100+
101+
```groovy
102+
buildscript {
103+
ext.kotlin_version = '1.1.0-beta-17'
104+
}
105+
```

pom.xml

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -31,26 +31,17 @@
3131

3232
<repositories>
3333
<repository>
34-
<id>sonatype-oss</id>
35-
<name>Sonatype OSS</name>
36-
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
37-
<snapshots>
38-
<enabled>true</enabled>
39-
</snapshots>
34+
<id>bintray</id>
35+
<name>bintray</name>
36+
<url>http://dl.bintray.com/kotlin/kotlin-eap-1.1</url>
4037
</repository>
4138
</repositories>
4239

4340
<pluginRepositories>
4441
<pluginRepository>
45-
<id>sonatype.oss.snapshots</id>
46-
<name>Sonatype OSS Snapshot Repository</name>
47-
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
48-
<releases>
49-
<enabled>false</enabled>
50-
</releases>
51-
<snapshots>
52-
<enabled>true</enabled>
53-
</snapshots>
42+
<id>bintray</id>
43+
<name>bintray</name>
44+
<url>http://dl.bintray.com/kotlin/kotlin-eap-1.1</url>
5445
</pluginRepository>
5546
</pluginRepositories>
5647

@@ -65,7 +56,7 @@
6556

6657
<properties>
6758
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
68-
<kotlin.version>1.1-SNAPSHOT</kotlin.version>
59+
<kotlin.version>1.1.0-beta-17</kotlin.version>
6960
<junit.version>4.12</junit.version>
7061
<maven.compiler.source>1.6</maven.compiler.source>
7162
<maven.compiler.target>1.6</maven.compiler.target>

0 commit comments

Comments
 (0)