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 470f347 commit 8d81e90Copy full SHA for 8d81e90
build.gradle.kts
@@ -40,23 +40,15 @@ tasks {
40
}
41
42
compileKotlin {
43
- // Enable Kotlin compilation to Java 8 class files with method parameter name metadata
44
kotlinOptions {
45
jvmTarget = "11"
46
freeCompilerArgs = listOf("-XXLanguage:+InlineClasses")
47
-// javaParameters = true
48
49
sourceCompatibility = "11"
50
- // As per https://stackoverflow.com/a/47669720
51
- // See also https://discuss.kotlinlang.org/t/kotlin-support-for-java-9-module-system/2499/9
52
-// destinationDir = compileJava.destinationDir
53
54
55
compileTestKotlin {
56
- kotlinOptions {
57
- jvmTarget = "11"
58
59
- }
+ kotlinOptions.jvmTarget = "11"
60
61
62
0 commit comments