Platform services powered by Spring Boot
Build application artifacts:
./mvnw clean install
Build application artifacts (without tests):
./mvnw clean install -Dmaven.test.skip=true
Run tests:
./mvnw test
Run run services:
./mvnw -pl [:service1-server,:service2-server] spring-boot:run
Require already built application artifacts
Bootstrap full project using docker-compose:
docker-compose up
Bootstrap project excluding some services using docker-compose:
docker-compose up --scale [SERVICE=0...]
Stop and remove containers, networks, images:
docker-compose down