> <artifactId>maven-compiler-plugin</artifactId> > <version>2.3.2</version> ... > <artifactId>maven-war-plugin</artifactId> > <version>2.3.2</version> ... > <artifactId>maven-dependency-plugin</artifactId> ........... (no version)
> Replacing the latest version 3.0.3 leads to some other error message. After Maven itself is version 3.0.3 but the plugins are all released on their own and have completely different versions. You *will* get error messages if you try to specify version 3.0.3 of the war plugin for example since it doesn't exist yet. > removing the version tags, those error messages are gone in the window. The > 2.0.2 version are downloaded when I run "mvn verify". After removing the version tags from your pom, Maven will use plugin versions declared in the "super pom" instead. Those versions exist thus there are no error messages. Wayne
