Edamame
Edamame

Reputation: 25406

Maven plug-in errors in eclipse

I got the following Maven plug-in error in pom.xml. Any suggestion on how to fix it? Thanks!

enter image description here

enter image description here

Upvotes: 0

Views: 34

Answers (1)

Mykel Alvis
Mykel Alvis

Reputation: 1052

Without the effective pom to observe, it looks like java.version isn't specified as one of your <properties/>. Are you certain that you have a valid value for that?

On a *nix like box you might

mvn -U help:effective-pom|grep java.version

and see if you get any results (should be something like <java.version>1.7</java.version>

Upvotes: 1

Related Questions