2013-05-11 3 views
0

Я попытался установить jquantlib, следуя инструкциям в http://www.jquantlib.org/index.php/JQuantLib_Users_Guide#Building_JQuantLib_from_command_line Однако при запуске «mvn clean install» в папке jquantlib я обнаружил следующие ошибки. Это после того, как я запустил «mvn clean install» в jquantlib-parent folder btw, и это сработало нормально. Кто-нибудь еще сталкивался с этим раньше или пытался его исправить? Я пробовал читать статьи, которые предлагалось с сообщением об ошибке, но я не мог получить от них большую помощь.ошибка при построении jquantlib с maven

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:test (default-test) on project jquantlib: There are test failures. 
[ERROR] 
[ERROR] Please refer to /home/harish/workspace/jquantlib/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 
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command 
[ERROR] mvn <goals> -rf :jquantlib 

ответ

0

В этом сообщении сообщается, что произошли сбои в модульном тестировании, и поэтому сборка была остановлена. Вы можете попытаться пропустить выполнение набора тестов, выполнив:

mvn -DskipTests clean install 
+0

спасибо, что исправил его – user1943079

Смежные вопросы