Hi,
I have a project and I need to use Spring Boot Starter in the project.
Which is the latest version and what code should I add to pom.xml file of my project?
Thanks
Hi,
The latest version of Spring Boot Starter is 3.2.1 as on 27-Dec-2023.
You include following code in your pom.xml file:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>3.2.1</version> </dependency>
Thanks
Ads