i am building a microservice using microservice-package-maven-plugin to package docker container. This works fine on build-server, but i would like to switch off thid docker packaging on my development environment, because i use windows and therefore no docker. At the moment i am editing the pom.xml true.. and true... Is there a better way to achieve this?
Can i add some command lines to my maven build like that? >mvn clean insatll -Dmicroservice.containerSkip=true ?
Or should i introduce maven profiles?
Thanks in advance