blob: e4c0c9988dfa6ac4148bf0ab8d4f78de5b35e297 [file] [log] [blame]
Roman Elizarove1a56522018-04-04 10:31:08 +03001
2// Shared configuration to compile all modules
3
4kotlin.experimental.coroutines "enable"
5
6repositories {
7 jcenter()
8 maven { url "http://kotlin.bintray.com/kotlinx" }
9 maven { url "https://dl.bintray.com/devexperts/Maven/" }
10}
11
12tasks.withType(Test) {
13 testLogging {
14 showStandardStreams = true
15 events "passed", "failed"
16 }
17 def stressTest = project.properties['stressTest']
18 if (stressTest != null) systemProperties['stressTest'] = stressTest
19}