You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Jagat Singh <ja...@gmail.com> on 2015/09/20 06:33:12 UTC

Copy common file during maven assembly

I am building one maven assembly.

The structure is like this

src main server app1 app2 app3 client app1 app2 app3 common server.xml

The assembly makes the output as

server.zip app1 app2 app3

I want to include server.xml in each of the output folders for apps. So my
output should be

server.zip app1 server.xml
app2 server.xml
app3 server.xml

How can i do that?

Thanks