본문 바로가기
에러 모음집

[Spring] ❌ No goals have been specified for this build (Maven)

by snow_white 2022. 6. 3.

예제 프로젝트 실행을 위해 Run을 시도했더니 아래와 같은 에러가 발생했다.

 

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>. Available 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]

 

Maven 프로젝트로 생성시 위와 같은 오류가 발생할 때가 있는데, 목표 설정을 해주지 않아서 발생하는 문제이다.

Maven 프로젝트는 빌드 옵션을 정해주어야지만 빌드가 가능하다.

 

<defaultGoal>install</defaultGoal>

 

✔ pom.xml에 이 문구를 <build> 태그 안에 넣어주는 것으로 오류는 해결 된다.

 

<build>
		<defaultGoal>install</defaultGoal>
</build>

 

댓글