I have 5 environments:
- local (my development machine) - dev - qc - uat - live - staging
I want different application properties to be u
Try this. Edit your build.gradle file as followed.
ext { profile = project.hasProperty('profile') ? project['profile'] : 'local' }