A question: when will the 5.0.0 of the spring boot starter be released?
And, will it support Spring Boot 4 that was just released?
A question: when will the 5.0.0 of the spring boot starter be released?
And, will it support Spring Boot 4 that was just released?
It released on the same day as the rest of Axon Framework 5, @Oleg_Cohen. We just changed the coordinate slightly:
<dependency>
<groupId>org.axonframework.extensions.spring</groupId>
<artifactId>axon-spring-boot-starter</artifactId>
<version>5.0.0</version>
</dependency>
Note the “extensions” in the groupId.
Our reasoning for this shift, is that Spring support is an extension to the core of Axon Framework. Just as much as the planned Quarkus and Micronaut support will be extensions.
We tested this locally, and it works. There are some minor issues around Spring, for which we are added additional smoke tests. The tests plus fixes will come to 5.0.1, which I hope to release this week.
@Steven_van_Beelen, thank you! I will wait for the 5.0.1 to be released.