[ACCEPTED]-Can I make one maven profile activate another?-maven-2
Accepted answer
You can't "chain" profile activations 2 (maven reference) but you can activate them both through 1 the same property:
<activation>
<property>
<name>profile.selenium</name>
</property>
</activation>
And the run mvn -Dprofile.selenium
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.