As I understand it, activeByDefault is not inherited by child poms so it must be repeated in all poms (that care about this profile behavior). However in the past the properties section of this profile was inherited by child poms. However for some reason that isn't working anymore, I find I have to repeat the properties section too in all child poms.
What's the rule here? How is this supposed to work? I do have another activeByDefault profile, I assume any number of profiles can be activeByDefault? (I understand that any command line profile would turn off these profiles unless activated on the command line.) <profile> <id>weblogic</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <application.server.type>weblogic</application.server.type> </properties> </profile> -Dave