Reputation: 1615
How can I tell maven to put certain files into certain folders?
For example, I want to put security.xml into WEB-INF in target folder. By default maven ignoring this file.
Upvotes: 1
Views: 260
Reputation: 12837
Maven Resources Plugin should do the work. You can use it together with Maven Filtering if you want to parametrize your config files.
Upvotes: 1