We use the maven plugin to power up to launch exploding wars.
We have a script that copies certain configuration files to the directory that maven uses to build the war (mainly spring configuration + web.xml
for a standalone test environment).
The problem is that it seems that the webapp is being created again before jetty launches run-exploded, which replaces our custom configuration files into which we copied. Oddly enough, this affects people only on Windows, not Ubuntu users.
Does anyone know a way to start a task jetty:run-exploded
, but does not allow Maven to create anything before this?
Hanswors
source
share