We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e3861d commit 3a84abfCopy full SHA for 3a84abf
1 file changed
build.gradle
@@ -60,11 +60,15 @@ allprojects { project ->
60
tasks.withType(JavaCompile).configureEach {
61
if (!it.name.contains("Test")) {
62
options.release = 8
63
+ } else {
64
+ options.release = 11
65
}
66
67
tasks.withType(KotlinCompile).configureEach {
68
69
it.compilerOptions.jvmTarget = JvmTarget.JVM_1_8
70
71
+ it.compilerOptions.jvmTarget = JvmTarget.JVM_11
72
73
74
0 commit comments