Last active
December 14, 2015 22:19
-
-
Save walery/5158036 to your computer and use it in GitHub Desktop.
'mvn eclipse:eclipse' creates wtp project in eclipse. Copypasta gist :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-eclipse-plugin</artifactId> | |
| <version>2.9</version> | |
| <configuration> | |
| <wtpversion>2.0</wtpversion> | |
| </configuration> | |
| </plugin> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
alternative:
mvn -Dwtpversion=2.0 ...