-
Notifications
You must be signed in to change notification settings - Fork 2
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
[APPENG-849] Add spring boot 3.3 support #85
Conversation
tw-tkms-starter/build.gradle
Outdated
if (!springBootVersion.startsWith("2.6")) { | ||
testImplementation libraries.flywayMysql | ||
} |
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.
@tw-peeterkarolin should we get rid of this block now that we don't support 2.6
anymore?
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.
I'm not Peeter, but I think that will make sense
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.
Agree as well that now that we only have Boot 2.7 and up then there is no need for that if block. Now we can always add the flywayMysql
tw-tkms-starter/build.gradle
Outdated
@@ -55,9 +55,10 @@ dependencies { | |||
testImplementation project(":tw-tkms-test-starter") | |||
|
|||
testImplementation libraries.awaitility | |||
if (!springBootVersion.startsWith("2.6")) { | |||
testImplementation libraries.flywayMysql | |||
if (springBootVersion.startsWith("3.3")) { |
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.
That if might be better if we use !springBootVersion.startsWith("3.2")
instead so that it will be forward compatible with next Spring Boot versions.
On the other hand it will constantly remind us that we need to double check if we still need that if at all in new boot versions, so it's more an optional comment.
743640e
to
0b9a53c
Compare
Context
This pull request attempts to upgrade the library to use spring boot 3.3.
Checklist
Details from ticket: APPENG-849
Update platform libraries matrix tests to run with boot 3.3