Unsupported WTP version: 1.5. This plugin currently supports only the following versions: 1.0 R7
Written on February 21, 2009 at 5:11 am by
mkyong
Often times, you may to use “mvn eclipse:eclipse -Dwtpversion=1.5” command to create a web project for Eclipse IDE, but you may encounter the following error messages.
Unsupported WTP version: 1.5.
This plugin currently supports only the following versions: 1.0 R7D:\mkyong>mvn eclipse:eclipse -Dwtpversion=1.5 [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'eclipse'. [INFO] ------------------------------------------------------------------------ [INFO] Building wicketHelloWorld [INFO] task-segment: [eclipse:eclipse] [INFO] ------------------------------------------------------------------------ [INFO] Preparing eclipse:eclipse [INFO] No goals needed for project - skipping [INFO] [eclipse:eclipse] [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Unsupported WTP version: 1.5. This plugin currently supports only the following versions: 1.0 R7
The solution is include the “maven-eclipse-plugin” Maven plugin into pom.xml file.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.5</version> <configuration> <wtpversion>1.5</wtpversion> </configuration> </plugin>
Done. Try mvn eclipse:eclipse -Dwtpversion=1.5 command again.
This article was posted in Maven category.
All Java Tutorials
- Java Core Technology - Java RegEx, Java XML, Java I/O, Java Misc
- J2EE Frameworks - Hibernate, Spring 2.5, Spring MVC, Struts 1.x, Struts 2.x
- Build Tools - Maven, Archiva
- Unit Test - jUnit, TestNG
- Client Scripts - jQuery
[...] Unsupported WTP version: 1.5 [...]
[...] P.S If you hit Unsupported WTP version: 1.5. This plugin currently supports only the following versions: 1.0 R7 error, please visit solution here [...]