일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- mybatis
- SonarQube
- 아파치
- slave node
- spring
- heap메모리
- 스프링
- springboot
- DB
- orm
- Elk
- Gradle
- mysql
- JVM
- 리눅스
- Apach
- 마이바티스
- Bitbucket
- ElasticSearch
- Stash
- nodejs
- sql
- 시스템운영
- 트랜잭션
- 엘라스틱서치
- 자바
- npm
- Git
- 레드마인
- Java
- Today
- Total
프로그래머호이잇
[Java/자바 기초] Maven No goals have been specified for this build Error 본문
메이븐 빌드를 하면 아래와 같은 에러에 봉착합니다...ㅠㅠ
[ERROR] 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]
[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/NoGoalSpecifiedException
번역기를 돌려 보면 빌드에는 목표가 지정되어 있지 않아서 에러가 생기는 걸 알수있습니다.
따라서 pom.xml 에 아래와 같이 추가하여 주시면 에러가 사라집니다.
<defaultGoal>install</defaultGoal> 이와 같이 빌드의 목표를 지정해 주시면 됩니다.
물론 케이스 바이 케이스 라 저는 이렇게 해결했습니다!!
'java' 카테고리의 다른 글
[Java/자바 기초] annotation 만들기! (0) | 2017.01.03 |
---|---|
[Java/자바 기초] war 파일 만들기 (0) | 2016.12.29 |
[Java/자바 기초] jar 파일 풀기 .class 파일 디컴파일 (0) | 2016.12.27 |
[Java/자바 기초] Apache 톰캣 연동 후 서블릿 컴파일 (이클립스 사용안함) (0) | 2016.12.19 |
[Java/자바 기초] java 소스 컴파일하고, 실행하기 (0) | 2016.12.19 |