Commit 8aa7314
committed
Set kotlin.compiler.jvmTarget to 17
The `jvmTarget` defaults 1.8. So without setting the `jvmTarget`, when
using inline fun such as `assertDoesNotThrow`, the compiler will
complain:
```
Kotlin: Cannot inline bytecode built with JVM target 17 into bytecode
that is being built with JVM target 1.8. Specify proper '-jvm-target'
option.
```
1. https://kotlinlang.org/docs/maven.html#attributes-specific-to-jvm1 parent a9b9f0e commit 8aa7314
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
15 | 16 | | |
16 | 17 | | |
17 | 18 | | |
| |||
0 commit comments