Microservice for positions of the project Internship 4.0 from Poli-USP.
docker-compose --profile local up -d
mvn spring-boot:run
docker-compose --profile default up -d
First, check the current version of application on pom.xml
file in the master
branch. Then run:
git checkout develop
git checkout -b release/v<new_version>
./mvnw versions:set -DnewVersion=<new version>-SNAPSHOT
git add pom.xml
git commit -m "v<new version>"
git tag v<new version>
git push origin v<new version>
git checkout master
git merge release/v<new version> --no-ff
git push origin master