2017-06-06 71 views
0

我正在嘗試安裝並運行visallo軟件進行數據分析。我以下文檔http://docs.visallo.org/getting-started.html 我成功克隆的源代碼,當我運行命令 mvn -DskipTests compile命令它提高誤差作爲使用Maven運行visallo的錯誤

Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.3:install-node-and-yarn (install-node-and-yarn) on project visallo-web: Could not extract the Yarn archive: Could not extract archive: '/home/sindhuja/.m2/repository/com/github/eirslett/yarn/0.17.10/yarn-0.17.10./yarn-v0.17.10.tar.gz': EOFException 

完整的錯誤是

[ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.3:install-node-and-yarn (install-node-and-yarn) on project visallo-web: Could not extract the Yarn archive: Could not extract archive: '/home/sindhuja/.m2/repository/com/github/eirslett/yarn/0.17.10/yarn-0.17.10./yarn-v0.17.10.tar.gz': EOFException -> [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 :visallo-web 

[INFO ] Visallo:Web:Base ................................. FAILURE [1.077 s] 是錯誤的地方提出

我安裝了所有必需的依賴

  1. 版本的NodeJS V4.7.2
  2. Git版本2.11.0
  3. Maven版本3.3.9
  4. 紗版本0.24.5
  5. 的Ubuntu 17.04

pom.xml代碼是: https://github.com/visallo/visallo/blob/master/web/web-base/pom.xml

回答