Maven assembly plugin different filters for the same execution -


is there way can use different filters same execution?
example in addition common consumer filter below have additional filters applied each environment

<execution>     <id>consumer</id>     <phase>package</phase>     <goals>         <goal>single</goal>     </goals>     <configuration>         <finalname>consumer</finalname>         <filters>             <filter>src/main/resources/consumer/filter.properties</filter>         </filters>         <descriptors>             <descriptor>src/main/resources/consumer/tc.xml</descriptor>             <descriptor>src/main/resources/consumer/dev.xml</descriptor>             <descriptor>src/main/resources/consumer/qa.xml</descriptor>         </descriptors>     </configuration> </execution> 


Comments

Popular posts from this blog

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -

angular - DownloadURL return null in below code -