Maven - No plugin found for prefix 'tomcat7' in the current project and in the plugin groups

后端 未结 6 1061
醉梦人生
醉梦人生 2021-02-12 03:49

I\'ve created a Maven project. This is the structure:

-parent
    -core
    -web

but when I try to dep

6条回答
  •  天涯浪人
    2021-02-12 04:01

    It means tomcat7 plugin not found . Add this to your pom.xml.

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

提交回复
热议问题