Compatibility Issue with Spring Boot 4.0.0 & Spring AI
Hi everyone, Hope you're having a productive week. I'm currently following the Spring Boot for Beginners course and running into a persistent issue while trying to integrate Spring AI (OpenAI starter). My project is using the Spring Boot 4.0.0 parent POM. When I add the required dependency (spring-ai-openai-spring-boot-starter), I get the following error during my Maven build: Dependency 'org.springframework.ai:spring-ai-openai-spring-boot-starter:' not found I've checked the official documentation, which states: "Spring AI supports Spring Boot 3.4.x and 3.5.x." My Questions to the Community are : 1. Has anyone successfully managed to integrate Spring AI into a project using the Spring Boot 4.0.0 ? If so, what specific Spring AI BOM version did you use, and did you need any custom repository configuration? 2. Since Spring AI officially only supports the 3.x line, is the general consensus that I should downgrade my project's parent POM to Spring Boot 3.5.0 to ensure dependency resolution and stability? Any advice or confirmation from someone who has navigated this version conflict would be greatly appreciated 🙏 Thank you