maven - Merging plugin configuration from profile -
i have configuration entry exec-maven-plugin
<configuration> <executable>compass</executable> <arguments> <argument>compile</argument> <argument>-c</argument> <argument>config_production.rb</argument> <argument>--force</argument> </arguments> </configuration> now in profile i'd merge configuration with:
<configuration> <arguments> <argument>compile</argument> </arguments> </configuration> because combine.children="merge" default i'd expect effective configuration be:
<configuration> <executable>compass</executable> <arguments> <argument>compile</argument> </arguments> </configuration> but instead it's same original.
what gives? i've tried setting combine.children="merge" , combine.self="override" no avail.
maven documentation mentions "how child poms inherit configuration parent poms", i'd expect merging profiles work same way.
above results show merging profiles works differently - how?
Comments
Post a Comment