Spring Boot Initializr: Maven project or Maven POM?
Maven Project
is the type which we use to create a common Spring Boot application. It seems Maven POM
is for downloading build scripts only.
Maven POM
creates only the pom.xml
file.
Maven Project
creates the pom.xml
file and a sample project including src
folder:
> src:
> main:
> java:
> com.example:
Application.java
> resources:
application.properties
> test:
> java:
> com.example:
ApplicationTest.java
> pom.xml