maven package 打包报错 Failed to execute goal
总结一下maven 打包,项目工程开发工具idea14,使用 JDK 1.8 版本
1.打包前需要先将idea关掉,不然会导致mvn clean的时候,部分文件删除不掉,mvn package的时候,也会丢失文件。
2.mvn package打包报错:[ERROR] Failed to execute goal org.apache.maven.plugins:maven-clean-plugin:2.6.1:clean (default-clean) on project
解决办法:
1. pom中如下配置maven插件,配置中声明使用JDK1.8:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<verbose>true</verbose>
<fork>true</fork>
<executable>${JAVA_HOME}/bin/javac</executable>
</configuration>
</plugin>
这边的${JAVA8_HOME}可能获取不了,可以直接写路径:
${JAVA8_HOME}这个变量是在settings.xml中配置的,如下:
<profile>
<id>custom-compiler</id>
<properties>
<JAVA8_HOME>C:\Program Files (x86)\Java\jdk1.8.0_73</JAVA8_HOME>
</properties>
</profile>
当然这里应该需要**,所以settings.xml文件还应该有如下配置:
<activeProfiles>
<activeProfile>custom-compiler</activeProfile>
</activeProfiles>
揭晓原因:
idea本身可以编译通过的原因是:maven其实是有一个默认的仓库.m2仓库和默认的settings.xml配置文件,这个默认的settings.xml文件中也添加了一个JAVA_HOME的变量后,编译就通过了。而在用cmd窗口mvn package命令打包,报编译失败,这就说明,maven编译的时候找的不是我在idea中配置的settings.xml,而是找的我原来配置E:\Tools\Maven\conf下的settings.xml。因为里面没有默认配置编译使用1.8版本的jdk,所以之前找不到JAVA_HOME,导致编译失败。
上一篇: Maven根据不同环境打测试和生产的包
下一篇: 学习笔记-Java8基础入门
推荐阅读
-
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) on pr
-
maven package 打包报错 Failed to execute goal
-
Failed to execute goal org.apache.maven.plugins
-
pyinstaller 打包运行报错 failed to execute script ***
-
Python:pyinstaller 打包运行报错 failed to execute script ***
-
Linux部署Java-Web,mvn package出现COMPILATION ERROR :Failed to execute goal org.apache.maven.plugins:mave
-
针对maven install 报错:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1 解决方案
-
maven package 打包报错 Failed to execute goal的解决
-
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.
-
Maven error: Failed to execute goal on project : Could not resolve dependencies for project 解决办法