chore: upgrade major version for cap and spring-boot#113
Conversation
Schmarvinius
commented
Jul 6, 2026
- Adapted java min version to 21 according to cap java 5.0.0
- Bumped Major Versions for cds-services and spring-boot in plugins and also for sample
- Bumped Revision to 0.0.2-alpha
SummaryThe following content is AI-generated and provides a summary of the pull request: Upgrade Major Versions for CAP Java and Spring BootChore🔧 Bumped major dependency versions across the project, adapting the minimum Java version and updating import paths broken by the Spring Boot 4.x package reorganization. Changes
PR Bot InformationVersion:
|
There was a problem hiding this comment.
The PR upgrades CDS/Spring Boot to major versions but has two concrete bugs: the spring-boot-starter-webmvc-test artifact ID is incorrect across all three POMs (should be spring-boot-webmvc-test), and the samples/bookshop sample still references the old 0.0.1-alpha version of cds-starter-ai after the project was bumped to 0.0.2-alpha. Both issues will cause build or resolution failures and must be fixed before merging.
PR Bot Information
Version: 1.26.14
- Correlation ID:
bd55cb20-7935-11f1-8029-de772f42838d - LLM:
anthropic--claude-4.6-sonnet - Event Trigger:
pull_request.opened - File Content Strategy: Full file content
|
|
||
| <dependency> | ||
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-starter-webmvc-test</artifactId> |
There was a problem hiding this comment.
Bug: spring-boot-starter-webmvc-test is not a valid Spring Boot artifact — the correct artifact for the WebMVC test autoconfigure module in Spring Boot 4.x is spring-boot-webmvc-test (no "starter" prefix). Using the wrong artifact ID will cause a dependency resolution failure.
| <artifactId>spring-boot-starter-webmvc-test</artifactId> | |
| <artifactId>spring-boot-webmvc-test</artifactId> |
Double-check suggestion before committing. Edit this comment for amendments.
Please provide feedback on the review comment by checking the appropriate box:
- 🌟 Awesome comment, a human might have missed that.
- ✅ Helpful comment
- 🤷 Neutral
- ❌ This comment is not helpful