For each of the Spring dependencies that we chose in the Spring Initializr, a starter will be listed in the dependencies tag. As we only chose web only, one spring dependency is shown, we don't specify which version since the BOM loaded in the parent has already set the default version to be included.
Then, we can see the inclusion of the Kotlin libraries required for our project, referring to the version specified in the Maven properties.
Finally, Spring Boot Test is included in the scope set to test life cycle and is only available in that phase.