diff options
author | Robert Jaros <rjaros@finn.pl> | 2018-04-25 08:12:25 +0200 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2018-04-25 08:12:25 +0200 |
commit | 5b9535e9964816eb228d3797f4c8a3e7676d1f53 (patch) | |
tree | 00889e3c489288d6386367e8ac26973868e11f8f /kvision-common/build.gradle | |
parent | 76c436567b87672609879a11762202599ed27af4 (diff) | |
download | kvision-5b9535e9964816eb228d3797f4c8a3e7676d1f53.tar.gz kvision-5b9535e9964816eb228d3797f4c8a3e7676d1f53.tar.bz2 kvision-5b9535e9964816eb228d3797f4c8a3e7676d1f53.zip |
Multiplatform kvision-common and kvision-server modules.
Support for automatic remote bindings (work in progress).
Diffstat (limited to 'kvision-common/build.gradle')
-rw-r--r-- | kvision-common/build.gradle | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/kvision-common/build.gradle b/kvision-common/build.gradle new file mode 100644 index 00000000..af3703e6 --- /dev/null +++ b/kvision-common/build.gradle @@ -0,0 +1,10 @@ +apply plugin: 'kotlin-platform-common' +apply plugin: 'kotlinx-serialization' + +dependencies { + compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion" + compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:$serializationVersion" + compile "org.jetbrains.kotlinx:kotlinx-coroutines-core-common:$coroutinesVersion" + testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlinVersion" + testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlinVersion" +} |