I am adding tomcat plugin in my appfuse light project pom file
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
</plugin>
after executing this command
mvn tomcat7:run
Everything is good before this step:
INFO: Starting ProtocolHandler ["http-bio-8080"]
But tomcat stops in this step for more than 10 minutes...
How can I resolve my problem?