File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -14,28 +14,19 @@ repositories {
1414targetCompatibility = ' 1.6'
1515sourceCompatibility = ' 1.6'
1616
17- sourceSets {
18- main. java. srcDirs + = ' src/main/kotlin'
19- test. java. srcDirs + = ' src/test/kotlin'
20- }
21-
2217dependencies {
23- compile " org.jetbrains.kotlin:kotlin-stdlib: ${ plugins.findPlugin("kotlin").properties["kotlinPluginVersion"] } "
18+ compile " org.jetbrains.kotlin:kotlin-stdlib"
2419 compile " org.jetbrains.kotlinx:kotlinx-coroutines-core:0.17"
2520 compile ' com.squareup.retrofit2:retrofit:2.3.0'
2621 testCompile ' junit:junit:4.12'
2722}
2823
2924kotlin {
30- experimental {
31- coroutines " enable"
32- }
25+ experimental. coroutines = " enable"
3326}
3427
3528jacocoTestReport {
36- reports {
37- xml. enabled = true
38- }
29+ reports. xml. enabled = true
3930}
4031
4132tasks[" test" ]. finalizedBy(" jacocoTestReport" )
You can’t perform that action at this time.
0 commit comments