pomkine
pomkine

Reputation: 1615

maven config pom.xml

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

Answers (1)

Jiri Kremser
Jiri Kremser

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

Related Questions