IDEA maven项目使用mvn clean package命令及调试

1、配置环境变量

IDEA maven项目使用mvn clean package命令及调试_第1张图片

IDEA maven项目使用mvn clean package命令及调试_第2张图片

2、在执行的过程中一直报错如下:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test) on project scala-msg: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test failed: The forked VM terminated without saying properly goodbye. VM crash or System.exit called ? -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn -rf :xxxx

查了很多资料,最终改了一下maven下的settiing.xml的的本地仓库路径为需要打包的项目路径。

IDEA maven项目使用mvn clean package命令及调试_第3张图片

3、打包成功

IDEA maven项目使用mvn clean package命令及调试_第4张图片

如果不同的profile打包,用mvn clean package -Pproduct,其中product指的是打的是product的包

你可能感兴趣的:(IDEA使用)