I have multiple profiles in maven like this,
` <profile>
<id>one</id>
<properties>
<env>one</env>
</properties>
</profile>
<profile>
<id>two</id>
<properties>
<env>two</env>
</properties>
</profile>
<profile>
<id>three</id>
<properties>
<env>three</env>
</properties>
</profile>
<profile>
<id>four</id>
<properties>
<env>four</env>
</properties>
</profile>`
My Question is how can i create a profile which can execute all of the profiles (Except executing in command line -Pone,two,three,four)??