In trying to follow a tutorial, he highlighted a few of the other Goals in the Maven build.
Goals Overview
The Spring Boot Plugin has the following goals.
- spring-boot:run runs your Spring Boot application.
- spring-boot:repackage repackages your jar/war to be executable.
- spring-boot:start and spring-boot:stop to manage the lifecycle of your Spring Boot application (i.e. for integration tests).
- spring-boot:build-info generates build information that can be used by the Actuator.
from : https://docs.spring.io/spring-boot/docs/current/maven-plugin/index.html
I couldn’t see any of these in the pom.xml file, and the Maven Views in STS didn’t show them either. So, I created my own Run Configurations and specified the Goal manually using the documentation for the exact name.
