Spring Boot Dependency Management - spring-boot-starter-parent
All spring boot application uses the spring-boot-starter-parent as the parent in pom.xml like below. It is a special project, the provides default configuration for our application (Java version and other properties), complete dependency tree to quickly build our spring boot project and default plugin configurations (maven-failsafe-plugin, maven-jar-plugin etc..). <parent> <groupId> org.springframework.boot </groupId> <artifactId> spring-boot-starter-parent </artifactId> <version> 2.3.3.RELEASE </version> <relativePath/> <!-- lookup parent from repository --> </parent> Once we declared the starter parent in our project, we can just pull any dependencies from the parent by just declaring it our dependencies tag, and also we don't need to define versions of the dependencies. Maven will download jar files based on the version defined for starter parent in the parent tag. If you want different dependency vers...