I have around 15 maven profiles which are identical except that they have different systemPropertyVariables in their configuration. I would like to execute them all with a single command, and I know I can use this: Executing multiple maven profiles
Is it possible to do this without having to list all the profiles in the maven command, i.e. can I make a single profile within my POM file that, in turn, invokes multiple profiles? Alternatively if I could execute a single profile multiple times with different systemPropertyVariables, that would work too.