Activate multiple profiles from a profile

1.7k views Asked by At

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)??

0

There are 0 answers