intelij idea 使用maven打包报错 Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1

解决maven打war包报错

intelij idea 使用maven打包报错 Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1

 

 

二、问题分析:
不能执行依赖包maven-compiler-plugin:3.8.1,判断原因是缺少这个jar包

三、问题解决:
打开pom.xml文件,在适当位置加入下列依赖:

<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</dependency>
注:如果报错的版本号不是2.3.2,把version标签里面的内容改成需要的版本号就行啦

intelij idea 使用maven打包报错 Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1

上一篇:PHP导出excel CSV(前后分离)


下一篇:HTML基础知识