I\'ve created a Maven project. This is the structure:
-parent
-core
-web
but when I try to dep
The reason why you get that error is because you simply have not installed the Tomcat7 plugin. Here's what you can do (I tested this on my test project and it works):
pom.xml
file just like you have done.mvn install
or mvn package
to install that tomcat7 pluginmvn tomcat7:deploy
I tested this solution with mvn tomcat7:run
and it works like a charm :)