Spring Boot Projects as Maven Sub-Modules
The easiest ways to setup a Spring Boot project with Maven is to define spring-boot-starter-parent as the project's parent in you POM file: <project ...> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.4.RELEASE</version> </parent>…