Since I updated to maven 3 my netbeans 6.9.1 environement, I get this message at each build :

[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for proj:id:jar:3.1
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ line 195, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 204, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-surefire-plugin is missing. @ line 227, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 215, column 15
[WARNING] 'reporting.plugins.plugin.version' for org.codehaus.mojo:jdepend-maven-plugin is missing. @ line 271, column 15
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 

What is that ? How I resolve that ?

Thanks.

link|improve this question

77% accept rate
feedback

3 Answers

up vote 16 down vote accepted

This link gives the reason for the WARNINGs. The fix is to explicitly specify the version for each plugin that is used.

link|improve this answer
3  
Very good news :-) And where I find the version of all that stuff ?! – Istao Nov 8 '10 at 10:54
2  
One way is to use Maven Version Plugin - this link (weblogs.java.net/blog/johnsmart/archive/2010/08/18/…) has useful info – Raghuram Nov 8 '10 at 11:08
4  
@lstao Run mvn help:effective-pom to find the version of the plugins you are currently using. – Pascal Thivent Nov 8 '10 at 11:21
2  
I usually set it to latest version, which I found in NetBeans - Simply press Ctrl+space after <version> tag, and it will show you all versions available, latest at top. – Ondra Žižka Jul 24 '11 at 0:55
feedback

Regarding this: 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing

...here on stackoverflow so far they have mentioned WHY the warning/error is happening for you, but not the basic fix. So for a basic fix for the new person (like me) I found all I needed to do was to go into my POM file for my project, and simply add the following...

Look closely further down in the output when you use maven to compile/deploy/etc... where you are missing version numbers it will actually tell you which default maven ends-up using. So when mine finished compiling I noticed this:

[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ entities ---

...so just take that version number (as in the '2.3.2' above) and add it to your POM like so..

SO WHERE YOU HAD SOMETHING LIKE THIS IN YOUR POM WITH NO 'version' TAGS:

<plugin>
  <artifactId>maven-compiler-plugin</artifactId>

...add the version tag to it so it looks like this:

<plugin>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>2.3.2</version>

...and you are done!

link|improve this answer
This is exactly what I'm here. I like this answer. But, how do you determine the version #? EDIT: Nevermind, you actually answered this too. I didn't realize I also had the same line in my compile output. Thanks so much! :) – Matthew Doucette Feb 1 at 16:41
feedback

Maven 3 is more restrictive with the POM-Structure. You have to set versions of Plugins for instance.

With maven 3.1 these warnings may break you build. There are more changes between maven2 and maven3: https://cwiki.apache.org/MAVEN/maven-3x-compatibility-notes.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.