Maven plugin for Tomcat 9

后端 未结 3 681
日久生厌
日久生厌 2021-02-01 15:56

I didn\'t find any tomcat-maven-plugin other than tomcat7-maven-plugin. Can I use it with apache-tomcat-9.0.0.M15?

3条回答
  •  轮回少年
    2021-02-01 16:11

    As stated in other answer, tomcat7-maven-plugin can still be used to deploy into a running Tomcat 9 with manager app present. However, to run embedded Tomcat 9, try the Cargo plugin:

    
      org.codehaus.cargo
      cargo-maven2-plugin
      1.7.6
      
        
          tomcat9x
          embedded
        
      
    
    

    Start it with:

    mvn org.codehaus.cargo:cargo-maven2-plugin:run
    

提交回复
热议问题