-
Notifications
You must be signed in to change notification settings - Fork 55
Upgraded Gradle to 9.1.0 #758
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
...e-plugin/examples/android/multiplatform/app/src/androidUnitTest/kotlin/android/LocalTests.kt
Outdated
Show resolved
Hide resolved
kover-gradle-plugin/src/functionalTest/templates/builds/android-inverse-order/build.gradle.kts
Outdated
Show resolved
Hide resolved
Co-authored-by: Filipp Zhinkin <[email protected]>
README.md
Outdated
|
|
||
| ## Kover features artifact | ||
| A JVM dependency that allows to programmatically instrument class-files on a disk. | ||
| Minimum version of JVM is `8`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIRC it is still '1.8', they migrated to single-number starting with Java 9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed )
| apiVersion = KotlinVersion.KOTLIN_1_5 | ||
| languageVersion = KotlinVersion.KOTLIN_1_8 | ||
| apiVersion = KotlinVersion.KOTLIN_1_8 | ||
| freeCompilerArgs.addAll("-Xsuppress-version-warnings") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't use also specify -Xjdk-release to avoid accidentally using API from higher JDKs?
(although you probably already has this covered by toolchain)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, output bytecode version is controlled by toolchain version
No description provided.