0

我正在尝试使用 Maven(neo4j 的批量导入器)安装插件。使用

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

以前从未使用过 Maven,这很神秘。有谁知道这些可能意味着什么,以及如何解决这个问题?如果我可以提供更多信息,请询问。

谢谢你。

4

1 回答 1

2

您省略了实际的失败测试(在您粘贴的代码段上方),但我猜这在无关紧要的测试中有些奇怪——试试这个:

sudo mvn clean compile package assembly:single -Dmaven.test.skip=true
于 2013-03-29T20:48:27.663 回答