when I execute maven, it will download all project dependencies to the local repository, including the required plugins: e.g. the org.codehouse..mojo:findbugs-maven-plugin:maven-plugin:2.0-SNAPSHOT will be copied to my local repository. but this plugin itself depends on junit 3.8.2
when I execute 'mvn install' (or whatever goal) it works fine, but I wonder why junit 3.8.2 is NOT copied to my local repository. is it because I am using a SNAPSHOT version of the findbugs maven plugin? or do I need to do some config, so that maven will also fetch the dependencies of the maven-plugins? this is important for me, because I usually want to run maven in offlinemode (mvn -o), because my networkconnection is quite slow. and in this case, the offline build will stop, because junit 3.8.2 is missing any comments welcome thanks in advance --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
