File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -34,33 +34,33 @@ dependencies {
3434defaultTasks(" assemble" )
3535
3636// https://docs.gradle.org/current/userguide/compatibility.html
37- val javaVersion = " 11 "
37+ // val javaVersion = JvmTarget.JVM_11 // default depends on kotlin release, should be 8 for now
3838val kotlinVersion = " 1.7"
3939tasks.apply {
4040
4141 // Kotlin
4242 compileKotlin {
4343 kotlinOptions {
44- jvmTarget = javaVersion
44+ // jvmTarget = javaVersion
4545 languageVersion = kotlinVersion
4646 }
4747 }
4848 compileTestKotlin {
4949 kotlinOptions {
50- jvmTarget = javaVersion
50+ // jvmTarget = javaVersion
5151 languageVersion = kotlinVersion
5252 }
5353 }
5454
55- // Java
56- compileJava {
57- sourceCompatibility = javaVersion
58- targetCompatibility = javaVersion
59- }
60- compileTestJava {
61- sourceCompatibility = javaVersion
62- targetCompatibility = javaVersion
63- }
55+ // Java
56+ // compileJava {
57+ // sourceCompatibility = javaVersion
58+ // targetCompatibility = javaVersion
59+ // }
60+ // compileTestJava {
61+ // sourceCompatibility = javaVersion
62+ // targetCompatibility = javaVersion
63+ // }
6464}
6565
6666// ================= PUBLISHING ================
You can’t perform that action at this time.
0 commit comments