Consider these commands:
mvn clean
mvn exec:java
The second line fails because the classes aren't there. it needs to be:
mvn clean
mvn install
mvn exec:java
Is there some way of having Maven run the install goal automatically?
That is, I want to specify that the install goal must always run
before exec:java does. I tried using the <phase> parameter but had no
success.
Trevor
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]