Hi, we are using maven v. 1.1-beta-1 We have a goal with a dependency from test:compile, call it create-env Then we have another goal, dealing with the execution of certain test files, invoking test:match through attainGoal; call it custom-test-1 At last, we have another goal like custom-test1, working on different tests; call it custom-test-2
The problem that we see is that if we execute: maven create-env custom-test-1 custom-test-2 the tests are recompiled 3 times, even if they are already compiled and sources have not changed. Is there a way to control test compilation? Is there a way to avoid test recompilation while executing test:match? TIA MM