Open
Description
When you setup several containers :
arquillian-container-setup --containerAdapter jbossas-remote-7 --containerAdapterVersion 7.2.0.Final
arquillian-container-setup --containerAdapter jbossas-managed-7 --containerAdapterVersion 7.2.0.Final
You end up with several Maven profiles :
<profiles>
<profile>
<id>arquillian-jbossas-remote-7</id>
...
</profile>
<profile>
<id>arquillian-jbossas-managed-7</id>
...
</profile>
</profiles>
But none of them is a default one. It would be good to be able to activate this option :
arquillian-container-setup --containerAdapter jbossas-remote-7 --containerAdapterVersion 7.2.0.Final --setAsDefault
And the result would be
<profiles>
<profile>
<id>arquillian-jbossas-remote-7</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
...
</profile>
<profile>
<id>arquillian-jbossas-managed-7</id>
...
</profile>
</profiles>
Activity