We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4115fe commit eb48603Copy full SHA for eb48603
build.gradle
@@ -1,3 +1,6 @@
1
+import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
+import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
3
+
4
buildscript {
5
ext.kotlin_version = '1.9.10'
6
ext.embedded_kotlin_version = '1.9.10'
@@ -157,6 +160,12 @@ subprojects {
157
160
158
161
sourceCompatibility = 1.8
159
162
163
+ tasks.withType(KotlinCompilationTask).configureEach {
164
+ compilerOptions {
165
+ jvmTarget = JvmTarget.JVM_1_8
166
+ }
167
168
169
if (JavaVersion.current() >= JavaVersion.VERSION_16) {
170
test {
171
jvmArgs = [
0 commit comments