spring cloud stream
compile("com.solace.spring.cloud:spring-cloud-starter-stream-solace:3.1.0")
when i add this dependency to my project using spring boot 2.3.12. Its downloading 2.4.3 jar also ( when removed it doesn't ) where as i tried 2 other project its not the case over there they still use 2.3.12 and does not download 2.4.3 and use it for solace .
infact if we try creating fresh project there also it does not download 2.4.3.
Is there any reason this could be happening.
Comments
-
Hi @akg17,
The Solace Spring Cloud starter is dependent on the Spring Cloud projects. And starting with Spring Cloud v2020.0.X it looks like they require Spring Boot 2.4.X which is why you are seeing this. Is there any reason you can't use Spring Boot 2.4+?
Note that Spring Boot's latest release is 2.5.X and only 2.4/2.5 are actively maintained per Spring's info here: https://github.com/spring-projects/spring-boot/wiki#release-notes
0