Update copyrights
7 files changed
tree: 2d332fe5abcbd5515ebe8a210c7cd10484c7a684
  1. knit/
  2. kotlinx-coroutines-core/
  3. kotlinx-coroutines-javafx/
  4. kotlinx-coroutines-jdk8/
  5. kotlinx-coroutines-nio/
  6. kotlinx-coroutines-reactive/
  7. kotlinx-coroutines-rx-example/
  8. kotlinx-coroutines-rx1/
  9. kotlinx-coroutines-rx2/
  10. kotlinx-coroutines-swing/
  11. license/
  12. site/
  13. .gitignore
  14. CHANGES.md
  15. coroutines-guide.md
  16. pom.xml
  17. README.md
README.md

kotlinx.coroutines Download

Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0 release.

Modules and features

References and documentation

Using in your projects

Note that these libraries are experimental and are subject to change.

The libraries are published to kotlin-eap-1.1 bintray repository.

These libraries require kotlin compiler version to be at least 1.1.0 and require kotlin runtime of the same version as a dependency.

Maven

Add the bintray repository to <repositories> section (and also add pluginRepository to <pluginRepositories>, if you're willing to get kotlin-maven-plugin from there):

<repository>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
    <id>dl</id>
    <name>bintray</name>
    <url>http://dl.bintray.com/kotlin/kotlin-eap-1.1</url>
</repository>

Add dependencies (you can also add other modules that you need):

<dependency>
    <groupId>org.jetbrains.kotlinx</groupId>
    <artifactId>kotlinx-coroutines-core</artifactId>
    <version>0.12</version>
</dependency>

And make sure that you use the right Kotlin version:

<properties>
    <kotlin.version>1.1.0</kotlin.version>
</properties>

Gradle

Add the bintray repository (and also add it to buildScript section, if you're willing to get kotlin-gradle-plugin from there):

repositories {
    maven {
        url "http://dl.bintray.com/kotlin/kotlin-eap-1.1"
    }
}

Add dependencies (you can also add other modules that you need):

compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.12'

And make sure that you use the right Kotlin version:

buildscript {
    ext.kotlin_version = '1.1.0'
}