Which version of maven-surefire-plugin is compatible with spring-boot 3.3
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.5</version> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-paltform-surefire-provider</artifactId> <version>1.1.0</version> </dependency> </dependencies> </plugin> spring-boot-version 3.3.0 Java 17 maven compiler plugin 3.8.1 Error: class missing: org/apache/maven/plugin/surefire/log/api/ConsoleLogger I tried other versions of surefire plugin 3.0.0-M5 but it did not work either, getting same error java spring spring-boot maven-plugin maven-surefire-plugin