Files
anastasiia.spaseeva 38b59ddabf Wizard: Fix tests
2020-12-09 18:16:07 +03:00

30 lines
552 B
Kotlin
Vendored

plugins {
kotlin("multiplatform") version "KOTLIN_VERSION"
}
group = "testGroupId"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
kotlin {
jvm {
compilations.all {
kotlinOptions.jvmTarget = "1.8"
}
withJava()
testRuns["test"].executionTask.configure {
useJUnit()
}
}
sourceSets {
val jvmMain by getting
val jvmTest by getting {
dependencies {
implementation(kotlin("test-junit"))
}
}
}
}