1234567891011121314151617181920212223242526272829303132 |
- plugins {
- id 'org.jetbrains.kotlin.jvm' version '1.5.10'
- id 'application'
- }
- group = 'me.stanislav'
- version = '1.0-SNAPSHOT'
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC'
- testImplementation 'org.jetbrains.kotlin:kotlin-test'
- }
- test {
- useJUnitPlatform()
- }
- compileKotlin {
- kotlinOptions.jvmTarget = '1.8'
- }
- compileTestKotlin {
- kotlinOptions.jvmTarget = '1.8'
- }
- application {
- mainClassName = 'MainKt'
- }
|