No plugin found for prefix ‘war’ in the current project and in the plugin groups

来源:互联网 发布:如何网络共享打印机 编辑:程序博客网 时间:2024/05/21 12:41

         No plugin found for prefix ‘war’ in the current project and in the plugin groups的问题,需要在pom文件中加上:

          <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
            <version>2.5</version>
        </dependency>

0 0