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
Post a Comment