Is it possible to select a profile based on what the current git branch is?
For example, if you are in the master branch, it selects the 'production' profile. If it is the develop branch, it selects the 'development' profile.
I found the mavanagaiata plugin which provides the mvngit.branch
property but it can not be used in the <profiles>
section.
Is something like this possible? Or are there better ways? I want an easy way to automatically select the correct profile depending on the branch being build.
Run maven with corresponding profile:
mvn clean deploy -P $(git rev-parse --abbrev-ref HEAD)
Make the profile activation by a file. Then create the file in a corresponding branch only, so that when you switch branches the file will appear or disappear, it will affect the profile activation.
However, I feel that it is bad idea to select maven profile based on git branch.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With