maven 的tomcat插件依赖

   <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>tomcat-maven-plugin</artifactId>
    <version>1.1</version>
    <configuration>
     <path>/${project.build.finalName}</path>
    </configuration>
   </plugin>

运行:mvn tomcat:run项目

mvn tomcat:help -Ddetail=true -Dgoal=run 查看目标详细信息

你可能感兴趣的:(maven 的tomcat插件依赖)