tags:

views:

587

answers:

1

I have 2 maven2 profiles, selenium and jspc. Now for "selenium" id'd like to have an implicit activation of "jspc", so that I don't have to write mvn -Pselenium,jspc from the command line. Is this possible ?

+7  A: 

You can't "chain" profile activations ( maven reference) but you can activate them both through the same property:

<activation>
  <property>
    <name>profile.selenium</name>
  </property>
</activation>

And the run mvn -Dprofile.selenium

Robert Munteanu