The project is a Maven archetype for Spring Boot web application.
To install the archetype in your local repository execute following commands:
$ git clone https://github.com/suzel/spring-boot-quickstart-archetype.git
$ cd spring-boot-quickstart-archetype
$ mvn clean install
$ mvn archetype:generate \
-DarchetypeGroupId=com.github.spring-boot-archetypes \
-DarchetypeArtifactId=spring-boot-quickstart \
-DarchetypeVersion=1.0.0 \
-DgroupId=com.company \
-DartifactId=webapp \
-Dversion=1.0.0-SNAPSHOT \
-DinteractiveMode=false
$ mvn test spring-boot:run
http://localhost:8080/
Note: No additional services are required in order to start the application.