Robert
04/09/2019, 8:51 PMbuild.gradle.ktskarelpeeters
04/09/2019, 8:53 PMRobert
04/09/2019, 8:54 PMval compileTestKotlin: KotlinCompile by tasks
compileTestKotlin.kotlinOptions.jvmTarget = "1.8"
compileTestKotlin.kotlinOptions.jvmTarget = "1.8"
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions.jvmTarget = "1.8"
val compileJava: JavaCompile by tasks
compileJava.targetCompatibility = "1.8"
compileJava.sourceCompatibility = "1.8"
val compileTestJava: JavaCompile by tasks
compileTestJava.targetCompatibility = "1.8"
compileTestJava.sourceCompatibility = "1.8"
Should probably work 😛karelpeeters
04/09/2019, 8:58 PMRobert
04/09/2019, 9:23 PMAlexey Belkov [JB]
04/10/2019, 8:10 AM<https://youtrack.jetbrains.com/issues/IDEA?q=%22requires%20target%20release%22%20-Resolved%20>, but I haven't looked into it.Robert
04/10/2019, 9:14 PMNo tasks available after clicking the green triangle. But it is also because I mixed kotlin.test.* and io.kotlintest.*. Which am I supposed to use?
class MyTest {
@kotlin.test.Test
fun testThis() {Robert
04/10/2019, 9:17 PMdelegate IDE build/run actions to gradleRobert
04/10/2019, 9:17 PMPlatform test runner. Then one level up called Gradle I configured Delegate settings to DefaultRobert
04/10/2019, 9:18 PM