------ Fast Build Configuration ------ Olivier Lamy ------ 01 May 2008 ------ Fast Invoker Plugin Configuration If you follow the recommended approach and use a dedicated local repository for the integration tests (e.g. <<>>), you will likely encounter long build times. If the test repository has been cleaned, the plugin needs to re-download all artifacts from the central repo and the resulting network traffic slows the test execution down. But you can configure the plugin to download released artifacts from your local repo. This will work without optional settings with Maven >= 2.0.9 because many plugins versions are locked in the super POM. For older versions, you have to lock plugins versions. To enable this feature, you have to add a <<>> file in your project (for example in <<>>) and modify the plugin configuration as this : ------------------- ... org.apache.maven.plugins maven-invoker-plugin 1.2 ... src/it/settings.xml ... ... ------------------- The settings must contains the following content : ------------------- it-repo true local.central file://@localRepository@ true false local.central file://@localRepository@ true false -------------------