I am trying to implement step by step all instructions that are defined here:
and I have got a question regarding section: 11.4 Running the example
They wrote:
At this point our application should work. Since we have used the spring-boot-starter-parent POM we have a useful run goal that we can use to start the application. Type mvn spring-boot:run from the root project directory to start the application
I did not add spring-boot-maven-plugin directly to my pom.xml
I see that in spring-boot-starter-parent module spring-boot-maven-plugin are defined in pom.xml only in < pluginManagement> section, it means that in parent module only default configuration for plugin described.
And now I can't understand how and where the plugin is loaded?