Hello
I am using Maven 2.2.1
In my project I want to process some of the resource files. This needs to
happen after "copying webapp resources" step and before "building war" step.
Here's the log:
[war:war {execution: default-war}]
[INFO] Packaging webapp
[INFO] Assembling webapp[myapp] in [**\target\myapp-1.0-SNAPSHOT]
[INFO] Processing war project
[INFO] Copying webapp resources[myapp\src\main\webapp]
============> Need to process my resources here
[INFO] Building war: myapp\target\myapp-1.0-SNAPSHOT.war
Is there a way to accomplish this?
Thanks