-
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
Changes from 8 commits
3a89570
7b1e2b1
9052373
261c591
536652b
178f67d
3de84eb
6ab2526
0135d03
b3e3b92
1b6117f
c187dd4
cba2e50
0b9a53c
971dd1a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version=0.28.3 | ||
version=0.28.4 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,6 +58,9 @@ dependencies { | |
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 commentThe reason will be displayed to describe this comment to others. Learn more. That if might be better if we use 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. |
||
testImplementation libraries.flywayPostgresql | ||
} | ||
testImplementation libraries.flywayCore | ||
testImplementation libraries.lombok | ||
testImplementation libraries.springBootStarterActuator | ||
|
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