-
Notifications
You must be signed in to change notification settings - Fork 41.3k
Upgrade to Kotlin 2.2.0 #46238
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
Closed
Closed
Upgrade to Kotlin 2.2.0 #46238
+10
−12
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thanks, @sdeleuze. Would you mind taking a look at Lines 15 to 28 in 5db3cac
|
Sure I will have a look and refine the documentation accordingly. |
This commit leverages Kotlin 2.2 which is expected to be the new baseline for Spring Boot 4.0, so API and language versions are upgraded to KOTLIN_2_2 as well. It also enables the -Xannotation-default-target=param-property compiler flag, mainly for test purpose, in order to avoid the related warnings and to use what will likely be the default in an upcoming Kotlin version short term. For more details see https://youtrack.jetbrains.com/issue/KT-73255. KotlinPlatformJvmPlugin was a class from an old KMP plugin, deprecated for a long time and now removed. So its usage in PluginClasspathGradleBuild has been removed as well. Signed-off-by: Sébastien Deleuze <[email protected]>
Documentation update pushed. |
wilkinsona
pushed a commit
that referenced
this pull request
Jul 2, 2025
This commit leverages Kotlin 2.2 which is expected to be the new baseline for Spring Boot 4.0, so API and language versions are upgraded to KOTLIN_2_2 as well. It also enables the -Xannotation-default-target=param-property compiler flag, mainly for test purpose, in order to avoid the related warnings and to use what will likely be the default in an upcoming Kotlin version short term. For more details see https://youtrack.jetbrains.com/issue/KT-73255. KotlinPlatformJvmPlugin was a class from an old KMP plugin, deprecated for a long time and now removed. So its usage in PluginClasspathGradleBuild has been removed as well. Signed-off-by: Sébastien Deleuze <[email protected]> See gh-46238
Thanks very much, @sdeleuze. |
wilkinsona
added a commit
that referenced
this pull request
Jul 2, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit leverages Kotlin 2.2 which is expected to be the new baseline for Spring Boot 4.0, so API and language versions are upgraded to
KOTLIN_2_2
as well.It also enables the
-Xannotation-default-target=param-property
compiler flag, mainly for test purpose, in order to avoid the related warnings and to use what will likely be the default in an upcoming Kotlin version short term. For more details see https://youtrack.jetbrains.com/issue/KT-73255.KotlinPlatformJvmPlugin
was a class from an old KMP plugin, deprecated for a long time and now removed. So its usage inPluginClasspathGradleBuild
has been removed as well. @wilkinsona I think I don't see side effects after removing the offending line but please double check as I am not able to run some tests locally.