Hi,
recently I was working on a project and I found a build error while I tried to execute mvn -eclipse:eclipse command to build eclipse project settings for my maven project.
Error!
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-eclipse-plugin:2.3:eclipse (default-cli) on project my-web-proj: Unsupported WTP version: 2.0. This plugin currently supports only the following versions: 1.0 1.5 R7 none. -> [Help 1]the solution for the above error message is specify maven-eclipse-plugin setting in your project’s pom file.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.5</version> <configuration> <wtpversion>${supported-wtp-version}</wtpversion> </configuration> </plugin>
its all done 🙂 now you will be able to create eclipse project from your maven project.