SpringBoot Maven打包报错问题 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugi

导读:本篇文章讲解 SpringBoot Maven打包报错问题 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugi,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

一出现这个问题就去问博客爸爸们了,博客的兄弟们的文章全都是说是测试类的问题,我试了N次都不是这个问题,最后自己找出了问题所在,是版本对应问题

SpringBoot Maven打包报错问题 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugi

在springBoot的 pom.xml文件中将plugin的version版本与父项目的version版本一一对应即可,下面标红的部分!!

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
<!--   有一个父项目:spring-boot-starter-parent-->
   <parent>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-parent</artifactId>
      <version>2.2.1.RELEASE</version>
      <relativePath/> <!-- lookup parent from repository -->
   </parent>
   <packaging>jar</packaging>
   <groupId>com.kuang</groupId>
   <artifactId>helloworld</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <name>helloworld</name>
   <description>Demo project for Spring Boot</description>
   <properties>
      <java.version>1.8</java.version>
   </properties>
   <dependencies>
<!--      web依赖:集成了tomcat dispatcherServlet xml 。。。这些文件都被spring-boot-starter-web去坐了 所以不需要配置这些了-->
      <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-web</artifactId>
      </dependency>
<!--      SpringBoot的所有的依赖都是用spring-boot-starter开头的-->
<!--单元测试-->
      <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-test</artifactId>
         <scope>test</scope>
      </dependency>
   </dependencies>
   <build>
<!--      打jar包插件-->
      <plugins>
         <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <!--指定恰当版本-->
            <version>2.2.1.RELEASE</version>
         </plugin>

         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
               <!--跳过项目运行测试用例-->
               <skipTests>true</skipTests>
            </configuration>
         </plugin>
      </plugins>
   </build>

</project>

 

解决!吐了!弄了好久!

SpringBoot Maven打包报错问题 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugi

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/106046.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!