Tomcat 8 Maven Plugin for Java 8

前端 未结 6 1359
臣服心动
臣服心动 2020-11-28 04:58

Is the tomcat7-maven-plugin working with a tomcat 8 server and java 8? I can\'t find any tomcat8-maven-plugin.

6条回答
  •  野性不改
    2020-11-28 05:32

    groupId and Mojo name change Since version 2.0-beta-1 tomcat mojos has been renamed to tomcat6 and tomcat7 with the same goals.

    You must configure your pom to use this new groupId:

    
      
        
          org.apache.tomcat.maven
          tomcat6-maven-plugin
          2.3-SNAPSHOT
        
        
          org.apache.tomcat.maven
          tomcat7-maven-plugin
          2.3-SNAPSHOT
        
      
    
    

    Or add the groupId in your settings.xml

    .... org.apache.tomcat.maven ....

提交回复
热议问题