Maven:No goals have been specified for this build. You must specify a valid lifecycle phase

1. 执行打包命令报错:

No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Availa
ble lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources
, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-clean, clean, post-clean, pre-
site, site, post-site, site-deploy. -> [Help 1]

2. 解决方法:

pom.xml 文件中 <build> 标签要加配置: <defaultGoal>compile</defaultGoal>
Maven:No goals have been specified for this build. You must specify a valid lifecycle phase

上一篇:[LeetCode] 1156. Swap For Longest Repeated Character Substring 单字符重复子串的最大长度


下一篇:laravel migrations 反向生成