commit | 3ae898cd2afacb19888c27eda27131ac6520ea12 | [log] [tgz] |
---|---|---|
author | Konrad KamiĆski <kaminski.konrad@gmail.com> | Thu Mar 30 17:37:00 2017 +0200 |
committer | Konrad Kaminski <konrad.kaminski@allegrogroup.com> | Thu Mar 30 23:39:43 2017 +0200 |
tree | 770f478c8571a4915e40e1397a1b013a3fd7d9f4 | |
parent | 4d927c76488b96abaae7ba003f8064ad84b8334e [diff] |
Add support for Reactor.
Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1 release.
Basic modules:
Modules that provide builders and iteration support for various reactive streams libraries:
Modules that provide coroutine dispatchers for various single-threaded UI libraries:
UI
context for Android applications.JavaFx
context for JavaFX UI applications.Swing
context for Swing UI applications.Note that these libraries are experimental and are subject to change.
The libraries are available via JCenter. These libraries require kotlin compiler version 1.1.x
and require kotlin runtime of the same version as a dependency.
Add Bintray JCenter repository to <repositories>
section:
<repository> <id>central</id> <url>http://jcenter.bintray.com</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.14</version> </dependency>
And make sure that you use the right Kotlin version:
<properties> <kotlin.version>1.1.1</kotlin.version> </properties>
Add Bintray JCenter repository:
repositories { jcenter() }
Add dependencies (you can also add other modules that you need):
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.14'
And make sure that you use the right Kotlin version:
buildscript { ext.kotlin_version = '1.1.1' }