You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// See also https://discuss.kotlinlang.org/t/kotlin-support-for-java-9-module-system/2499/9
50
+
// destinationDir = compileJava.destinationDir
51
+
}
52
+
53
+
compileTestKotlin {
54
+
kotlinOptions {
55
+
jvmTarget ="11"
56
+
// javaParameters = true
57
+
}
58
+
}
59
+
60
+
compileJava {
61
+
// this is needed because we have a separate compile step in this example with the 'module-info.java' is in 'main/java' and the Kotlin code is in 'main/kotlin'
// See also https://discuss.kotlinlang.org/t/kotlin-support-for-java-9-module-system/2499/9
70
-
// destinationDir = compileJava.destinationDir
71
-
}
72
-
73
-
tasks.compileTestKotlin {
74
-
kotlinOptions {
75
-
jvmTarget ="11"
76
-
// javaParameters = true
77
-
}
78
-
}
79
-
80
-
tasks.compileJava {
81
-
// this is needed because we have a separate compile step in this example with the 'module-info.java' is in 'main/java' and the Kotlin code is in 'main/kotlin'
0 commit comments