A skeleton project shows how to develop a RESTful service (JAX-RS) using Spring Boot.
The project tries to manage sprinting activities for a scrum team.
- Able to create new stories, and reach story goes through
Todo
,inProgress
, andDone
stages - Three roles in the scrum team,
BusinessAnalyst
,Developer
, andTester
. A team member has only one role to perform.
Below is a list of frameworks are used
- Java 8 and above
- Maven
- Junit, and Mockito
- Lombok
- Spring Boot, Spring Actuator, and Spring Data JPA
To build an executable jar
./mvnw clean package
To run the application
./mvnw spring-boot:run