fishey2 / java-component-template

A template project for Java based projects with Spring Boot 2, Gradle, Logback and JUnit5
MIT License
7 stars 0 forks source link

Move implementation to use Makefile instead of Gradle directly #24

Open fishey2 opened 4 years ago

fishey2 commented 4 years ago

This decouples the pipeline implementation from Gradle (see with_maven issue).

Acceptance Criteria:

Given I have all pre-requisites configured When I call make test Then it will run the unit tests

Given I have all pre-requisites configured When I call make integration Then it will run docker-compose up And it will run the integration tests And it will run docker-compose down

Given I have all pre-requisites configured When I call make functional Then it will build and run the spring app And it will run the functional tests

Given I have all pre-requisites configured When I call make sonar Then it will run the sonar analysis