Sha256: 99d2356b432555cfa09a292284dd04e8f997c2522ee3e0974555d8a4b045cd19
Contents?: true
Size: 694 Bytes
Versions: 119
Compression:
Stored size: 694 Bytes
Contents
buildscript { ext.kotlin_version = '1.1.1' repositories { mavenCentral() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } apply plugin: 'kotlin' kotlin.experimental.coroutines = 'enable' repositories { mavenCentral() jcenter() } dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" testCompile 'junit:junit:4.12' testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" testCompile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.13' } test { testLogging { exceptionFormat = 'full' events = ["passed", "failed", "skipped"] } }
Version data entries
119 entries across 119 versions & 1 rubygems