Skip to content
This repository has been archived by the owner on Jan 12, 2020. It is now read-only.

suzel/spring-boot-quickstart-archetype

Repository files navigation

Spring Boot Quickstart Maven Archetype

Build Status License Status

Note : This repository is no longer maintained.

Summary

The project is a Maven archetype for Spring Boot web application.

Installation

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

Create a project

$ 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

Run the project

$ mvn test spring-boot:run

Test on the browser

http://localhost:8080/

Note: No additional services are required in order to start the application.