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

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -