Update build configuration for Java 21 and Spring Boot 3.2.0 upgrade#3
Open
devin-ai-integration[bot] wants to merge 3 commits into
Open
Update build configuration for Java 21 and Spring Boot 3.2.0 upgrade#3devin-ai-integration[bot] wants to merge 3 commits into
devin-ai-integration[bot] wants to merge 3 commits into
Conversation
- Upgrade Spring Boot from 2.6.3 to 3.2.0 - Update Java source and target compatibility from 11 to 21 - Upgrade MyBatis Spring Boot Starter from 2.2.2 to 3.0.3 - Upgrade Netflix DGS Framework from 4.9.21 to 8.1.1 - Upgrade JJWT from 0.11.2 to 0.12.5 - Remove Joda-Time dependency (will migrate to java.time API later) - Update CI workflow to use Java 21 instead of Java 11 This is the first step in the Java 11 to Java 21 migration. Build will fail with javax.* import errors, which is expected and guides the next phase (javax -> jakarta namespace migration). Co-Authored-By: Marcel Schwager <marcel.schwager@codeium.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Co-Authored-By: Marcel Schwager <marcel.schwager@codeium.com>
Co-Authored-By: Marcel Schwager <marcel.schwager@codeium.com>
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
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.
Update build configuration for Java 21 and Spring Boot 3.2.0 upgrade
Summary
This PR updates the build configuration to target Java 21 and Spring Boot 3.2.0 as the first step in migrating from Java 11 to Java 21. This PR intentionally causes build failures - the expected javax.* import errors will guide the next phase of work (javax → jakarta namespace migration).
Configuration changes:
2.6.3→3.2.011→212.2.2→3.0.34.9.21→8.1.10.11.2→0.12.5java.timeAPI in future PR)Review & Testing Checklist for Human
javax.*import errors. This is correct and intentional.javax.validation,javax.servlet), NOT with other compilation or dependency resolution errorsjava.timeAPI in a subsequent PR./gradlew bootRun, and that all tests passNotes
spring-boot-starter-validationdependency remains explicitly declared per Spring Boot 3 requirementsLink to Devin run: https://app.devin.ai/sessions/1118a6e1b56e4ad7970119a816ed7583
Requested by: Marcel Schwager (@marcelschwager-ux)