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

后端 未结 6 1141
醉梦人生
醉梦人生 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 03:54

    The error happens to have the plugin inside , it should be located in

    Before:

    
    
        
        org.apache.tomcat.maven
        tomcat7-maven-plugin
        2.2
        
        8080
        /
        
        
    
    
    

    After:

    
    
        
        org.apache.tomcat.maven
        tomcat7-maven-plugin
        2.2
        
        8080
        /
        
        
    
    
    

提交回复
热议问题