2013-03-29 3 views
0

Maven (일괄 처리기 neo4j 용)을 사용하여 플러그인을 설치하려고합니다. 사용하기Maven 플러그인 오류 : 테스트 실패

mvn clean compile assembly:single 

디렉토리를 만들 수 없다는 오류 메시지가 나타납니다. 빌드가 실패 할 때까지 다음 이유로 인해 시험의,

sudo mvn clean compile package assembly:single 

과 작동 듯 : 나는 그것을 변경

[INFO] BUILD FAILURE 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 27.798s 
[INFO] Finished at: Fri Mar 29 16:17:14 EDT 2013 
[INFO] Final Memory: 22M/949M 
[INFO] ------------------------------------------------------------------------ 
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:test (default-test) on project batch-import: There are test failures. 
[ERROR] 
[ERROR] Please refer to /u/omusayev/batch-import/batch-import/target/surefire-reports for the individual test results. 
[ERROR] -> [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/MojoFailureException 

전에 메이븐을 사용한 적이 데, 이것은 매우 애매하다. 누구나 이것이 무슨 뜻인지, 그리고 어떻게 문제를 해결할 수 있을지에 대한 아이디어를 가지고 있습니까? 더 이상의 정보를 제공 할 수 있다면, 물어보십시오.

감사합니다.

답변

2

당신은 (당신이 붙여 넣은 조각 위에있는) 실제 오류 테스트를 중단하지만 그것이 정말 중요하지 않습니다 테스트에서 일부 불확실성 같은데요 -이 시도 :

sudo mvn clean compile package assembly:single -Dmaven.test.skip=true 
+0

완벽을 . 고맙습니다. 모든 것이 잘되기를 바랍니다 ... –

관련 문제