차근차근/이것저것

Unknown Lifecycle Phase Error in Maven Build

예쁜꽃이피었으면 2015. 6. 4. 11:01

http://www.javabeat.net/maven-lifecycle-phase-error/


검색어 : unknown lifecycle phase mvn . you must specify a valid lifecycle phase or a goal in the format


If you are working with the maven build, there is more chance that you would have come across the error something like this:

1[ERROR] Unknown lifecycle phase "test1". You must specify a valid lifecycle phase or a goal
2in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-
3version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources,
4process-sources, generate-resources, process-resources, compile, process-classes, generate-
5test-sources, process-test-sources, generate-test-resources, process-test-resources, test-
6compile, process-test-classes, test, prepare-packagepackage, pre-integration-test,
7integration-test, post-integration-test, verify, install, deploy, pre-clean, clean, post-clean,
8 pre-site, site, post-site, site-deploy. -> [Help 1]

If you look at the above error “Unknown lifecycle phase”, your build could not detect the pre-defined lifecycle phase used by Maven. Maven has the following phases:

  • validate – validate the project is correct and all necessary information is available
  • compile – compile the source code of the project
  • test – test the compiled source code using a suitable unit testing framework. These tests should not require the code be packaged or deployed
  • package – take the compiled code and package it in its distributable format, such as a JAR.
  • integration-test – process and deploy the package if necessary into an environment where integration tests can be run
  • verify – run any checks to verify the package is valid and meets quality criteria
  • install – install the package into the local repository, for use as a dependency in other projects locally
  • deploy – done in an integration or release environment, copies the final package to the remote repository for sharing with other developers and projects.

You have to specify any one of the above phase to resolve the above error. In most of the situations, this would have occurred due to running the build from the eclipse environment. Look at the below screenshot,

Spring MVC Build Maven Error

- See more at: http://www.javabeat.net/maven-lifecycle-phase-error/#sthash.GgbKTXxs.dpuf

반응형

'차근차근 > 이것저것' 카테고리의 다른 글

스레드 덤프 만들기  (0) 2015.07.22
네이버 지도 api 사용하기  (0) 2015.07.01
SNV사용방법  (0) 2015.06.03
win8.1에서 putty실행 안됨.  (0) 2015.03.30
[ tess_two ] Making a Simple OCR Android App using Tesseract 2  (1) 2015.03.20