1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-10 01:05:20 +00:00

Update Kotlin version and add dependency on coroutines.

This commit is contained in:
2017-09-16 03:08:37 -07:00
parent e0ccb67ad3
commit 2e8e1488c4
2 changed files with 9 additions and 2 deletions

View File

@@ -2,7 +2,14 @@ apply plugin: 'application'
dependencies {
compile 'com.moandjiezana.toml:toml4j:0.7.1'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.18'
compile project(':core')
}
kotlin {
experimental {
coroutines "enable"
}
}
mainClassName = 'org.nwapw.abacus.fx.AbacusApplication'