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

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -