From 2e20021beb46c3dab72820c61e2e1441a99daca1 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Tue, 15 Dec 2020 12:00:53 -0500 Subject: [PATCH] Change Kotlin `jvmTarget` back to `1.8` It looks like Kotlin support in the IntelliJ IDEA doesn't not carry the `jvmTarget = '11'` properly and it still stick with `1.6` in the code editor See more info in the SO: https://stackoverflow.com/questions/52888341/does-kotlin-support-java-11 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index a4e68fc40b..69a5b59daf 100644 --- a/build.gradle +++ b/build.gradle @@ -210,7 +210,7 @@ configure(javaProjects) { subproject -> } compileTestKotlin { kotlinOptions { - jvmTarget = '11' + jvmTarget = '1.8' } }